/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #202020;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #fff;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.banner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    color: #B6FF61;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Header */
.header {
    background-color: #202020;
    box-shadow: 0 4px 8px 0 #000;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: #B6FF61;
}

/* Active page styles */
.nav-menu a.active {
    color: #B6FF61;
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #B6FF61;
    border-radius: 1px;
}

.nav-menu a.active:hover {
    color: #fff;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-banner {
    display: none;
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 10px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.btn i {
    font-size: 1.1rem;
    display: inline-block;
    margin-right: 5px;
    opacity: 0.9;
}

.primary-btn {
    background-color: #B6FF61;
    color: #0B0B0F;
}

.primary-btn:hover {
    background-color: #9eea4a;
    transform: translateY(-2px);
    color: #0B0B0F;
    box-shadow: 0 6px 12px rgba(182, 255, 97, 0.3);
}

.secondary-btn {
    background-color: transparent;
    border: 1px solid #737476;
    color: #fff;
}

.secondary-btn:hover {
    background-color: #737476;
    color: #fff;
    transform: translateY(-2px);
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #202020 0%, #2a2a2a 100%);
    padding: 3rem 0;
    text-align: center;
}

.banner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: #B6FF61;
    margin-bottom: 1rem;
}

/* Cards */
.card {
    background: linear-gradient(135deg, #2a2a2a 0%, #202020 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.card h3 {
    color: #B6FF61;
    margin-bottom: 1rem;
}

/* Section Images */
.section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    width: 100%;
}

ul {
    list-style:none;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #2a2a2a 0%, #202020 100%);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #737476;
}

th {
    background-color: #B6FF61;
    color: #0B0B0F;
    font-weight: bold;
}

tr:hover {
    background-color: #3a3a3a;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #202020 100%);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid #737476;
}

.cta-section h3 {
    color: #B6FF61;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cta-section p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn {
    min-width: 200px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ */
.faq-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #202020 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
}

.faq-question {
    font-weight: bold;
    color: #B6FF61;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #ccc;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background-color: #0B0B0F;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #737476;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #B6FF61;
}

.copyright {
    color: #737476;
    border-top: 1px solid #2a2a2a;
    padding-top: 2rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 1660px) {
    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #202020;
        padding: 2rem;
        box-shadow: 0 4px 8px 0 #000;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    nav.active {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }

    .mobile-banner {
        display: block;
    }

    .desktop-banner {
        display: none;
    }
    

    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .banner {
        margin-top: 70px;
        padding: 2rem 0;
    }
    
    .main-content {
        padding: 2rem 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 100%;
        margin-bottom: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .table-container {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
    }
    
    /* Mobile Image Styles */
    .section-image {
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 15px;
        flex-wrap: wrap;
        height: auto;
    }
    
    .logo {
        height: 30px;
    }

    .header-buttons .btn {
        width: 100%;
    }

    nav {
        top: 120px;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }


    .main-content {
        padding: 1.5rem 10px;
    }
    
    .banner {
        padding: 1.5rem 0;
    }
    
    .card {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-buttons .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus States for Accessibility */
.btn:focus,
a:focus {
    outline: 2px solid #B6FF61;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-section,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main-content {
        padding: 0;
    }
} 