:root {
    --primary-green: #00b341;
    --dark-green: #004d21;
    --bg-dark: #002b12;
    --white: #ffffff;
    --text-gray: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: var(--bg-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 40px; }

[class^="btn-"], [class*=" btn-"] {
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-outline {
    background: white;
    color: var(--bg-dark);
    margin-right: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--bg-dark) 100%);
    color: white;
    padding: 80px 0;
    border-radius: 0 0 50px 50px;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.btn-large {
    background: var(--primary-green);
    color: white;
    font-size: 1.2rem;
    padding: 15px 40px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 179, 65, 0.4);
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

/* Info Section */
.info-section {
    padding: 60px 20px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.info-section h2 {
    font-size: 2.2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--dark-green);
    line-height: 1.3;
}

.info-section h3 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.info-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.info-section ul, .info-section ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.info-section li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.info-section li p {
    margin: 0;
}

.info-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-section th, .info-section td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.info-section th {
    background-color: var(--dark-green);
    color: white;
    font-weight: bold;
}

.info-section tr:hover td {
    background-color: #f9f9f9;
}

/* Grid (Removed or kept for other sections?) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: left;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--dark-green);
}

details {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary-green);
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 0 20px 20px;
    color: #666;
}

/* Responsiveness */
@media (max-width: 768px) {
    /* Header */
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .auth-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .auth-buttons .btn { /* targeting specific buttons if needed, or just rely on generic */
        flex: 1;
        text-align: center;
        padding: 10px 15px;
    }
    
    /* Hero */
    .hero-wrapper { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .hero-content h1 { 
        font-size: 2rem; 
    }

    /* Content */
    .info-section {
        padding: 40px 20px;
    }

    .info-section h2 {
        font-size: 1.8rem;
    }

    .info-section h3 {
        font-size: 1.3rem;
    }

    /* Tables - Horizontal Scroll */
    .info-section table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
    }
    
    .info-section th, .info-section td {
        padding: 10px;
    }
}

/* Footer */
.footer {
    background: #111;
    color: #888;
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
}

.age-limit {
    border: 2px solid red;
    color: red;
    padding: 5px;
    border-radius: 50%;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}