/* Page-specific styles for disclaimer.html */
body {
    font-family: 'DM Sans', sans-serif;
    background: #fafaf8;
    color: #1a1a1a;
    line-height: 1.6;
}

.navbar {
    background: linear-gradient(135deg, #c41e3a 0%, #8b1528 100%);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s;
    margin-left: 10px;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
}

.content-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c41e3a;
}

h3 {
    font-size: 1.4rem;
    color: #c41e3a;
    margin: 30px 0 15px 0;
}

p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

ul {
    margin: 20px 0 20px 30px;
}

li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.8;
}

.highlight-box {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.highlight-box.warning {
    background: #fffbeb;
    border-left-color: #f59e0b;
}

.highlight-box.danger {
    background: #fef2f2;
    border-left-color: #dc2626;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.warning-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c41e3a;
}

.warning-card h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.warning-card p {
    margin: 0;
    font-size: 0.95rem;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    margin-top: 50px;
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 25px;
    }

    .warning-grid {
        grid-template-columns: 1fr;
    }
}
    