/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #090300 0%, #351603 54%, #6E2B00 78%, #CA5002 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background: linear-gradient(135deg, #090300 0%, #351603 54%, #6E2B00 78%, #CA5002 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #CA5002;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    background: rgba(202, 80, 2, 0.2);
    border: 1px solid rgba(202, 80, 2, 0.4);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.nav-link:hover {
    background: rgba(202, 80, 2, 0.3);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
    border-color: rgba(202, 80, 2, 0.6);
}

.nav-link.active {
    background: rgba(202, 80, 2, 0.4);
    border-color: rgba(202, 80, 2, 0.7);
    box-shadow: 0 4px 12px rgba(202, 80, 2, 0.3);
}

/* Main content styles */
.main {
    min-height: calc(100vh - 140px);
    padding: 2rem 0;
}

.content-section {
    animation: fadeIn 0.5s ease-in-out;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(202, 80, 2, 0.2);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #6E2B00 0%, #CA5002 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(202, 80, 2, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(202, 80, 2, 0.6);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(202, 80, 2, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(202, 80, 2, 0.3);
    text-decoration: none;
    border-color: rgba(202, 80, 2, 0.8);
}

/* Features section */
.features {
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(202, 80, 2, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(202, 80, 2, 0.2);
    border-color: rgba(202, 80, 2, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    color: #CA5002;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #6E2B00;
    text-decoration: none;
}

/* About section */
.about {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(202, 80, 2, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.about-content h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-list {
    margin: 1.5rem 0 1rem 1.5rem;
}

.about-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

/* Contact section */
.contact {
    background: linear-gradient(135deg, #090300 0%, #351603 54%, #6E2B00 78%, #CA5002 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(202, 80, 2, 0.3);
}

.contact-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.contact-item {
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(202, 80, 2, 0.3);
}

.content-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.effective-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.content-body {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(202, 80, 2, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.content-body h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(202, 80, 2, 0.3);
}

.content-body h3:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.content-body p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-body ul {
    margin: 1rem 0 1rem 1.5rem;
}

.content-body li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-body strong {
    color: white;
    font-weight: 600;
}

.contact-info {
    background: rgba(202, 80, 2, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #CA5002;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Footer styles */
.footer {
    background: linear-gradient(135deg, #090300 0%, #351603 54%, #6E2B00 78%, #CA5002 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem 0 1rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(202, 80, 2, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #CA5002;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(202, 80, 2, 0.3);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        width: 100%;
        justify-content: center;
    }
    
    .nav-link {
        flex: 1;
        max-width: 200px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .content-header h2 {
        font-size: 2rem;
    }
    
    .content-body {
        padding: 1.5rem;
    }
    
    .about, .contact {
        padding: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        max-width: none;
        width: 100%;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-header h2 {
        font-size: 1.8rem;
    }
    
    .content-body {
        padding: 1rem;
    }
    
    .content-body h3 {
        font-size: 1.2rem;
    }
    
    .about, .contact {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Print styles */
@media print {
    .header {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .nav-link {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
    
    .hero, .features, .about, .contact {
        display: none !important;
    }
    
    .content-body {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .footer {
        background: white !important;
        color: black !important;
        border-top: 1px solid #ccc !important;
    }
} 