.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 15px;
    flex: 1;
    background: linear-gradient(180deg, #f5f7f6 0%, #fff 100%);
    box-sizing: border-box;
    width: 100%;
}

.hero-section {
    position: relative;
    margin-bottom: 0;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-text-section {
    background: #fff;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-50px);
}

.hero-text-section h1 {
    font-size: 2rem;
    color: #005b2e;
    margin: 0 0 0.5rem 0;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.hero-text-section p {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1.5rem 0;
    font-family: Arial, sans-serif;
}

.reports-section {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.reports-wrapper {
    display: flex;
    gap: 2rem;
}

.reports-nav {
    flex: 0 0 200px;
}

.reports-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reports-nav ul li a.filter {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.3rem;
    color: #fff;
    background: linear-gradient(135deg, #005b2e 0%, #004022 100%);
    text-decoration: none;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #003018;
}

.reports-nav ul li a.filter:hover {
    background: linear-gradient(135deg, #003018 0%, #004022 100%);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.reports-nav ul li a.filter.active {
    background: #003018;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    transform: scale(1.05);
}

.reports-content {
    flex: 1;
    min-height: 400px;
}

.report-block {
    display: none;
}

.report-block.active {
    display: block;
}

.report-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.report-card h3 {
    font-size: 1.4rem;
    color: #005b2e;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-card ul {
    list-style: none;
    padding: 0;
}

.report-card ul li {
    margin-bottom: 0.5rem;
}

.report-link {
    font-size: 1.1rem;
    color: #004022;
    text-decoration: none;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
}

.report-link:hover {
    color: #005b2e;
    text-decoration: underline;
}

.report-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.report-button {
    background: #005b2e;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.report-button:hover {
    background: #003018;
}

.disclaimer-section {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.disclaimer-section p {
    font-size: 1rem;
    color: #444;
    margin: 0 0 1rem 0;
    font-family: Arial, sans-serif;
}

html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
        margin: 0;
        max-width: 100%;
    }

    .hero-section {
        height: 60vh;
        min-height: 400px;
        border-radius: 10px;
    }

    .hero-text-section {
        padding: 1.5rem;
        max-width: 90%;
        transform: translateY(-40px);
    }

    .hero-text-section h1 {
        font-size: 1.9rem;
    }

    .hero-text-section p {
        font-size: 1.1rem;
    }

    .reports-wrapper {
        flex-direction: column;
    }

    .reports-nav {
        flex: 0 0 auto;
        margin-bottom: 2rem;
    }

    .reports-nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        gap: 1rem;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
    }

    .reports-nav ul li {
        flex: 0 0 auto;
    }

    .reports-nav ul li a.filter {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
        min-width: 120px;
        text-align: center;
    }

    .reports-content {
        min-height: auto;
    }

    .report-card h3 {
        font-size: 1.4rem;
    }

    .report-link {
        font-size: 1.05rem;
    }

    .report-button {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .disclaimer-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .disclaimer-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero-text-section {
        transform: translateY(-30px);
        padding: 1.2rem;
    }

    .hero-text-section h1 {
        font-size: 1.7rem;
    }

    .reports-nav ul li a.filter {
        font-size: 1.1rem;
        padding: 0.9rem 1.2rem;
        min-width: 100px;
    }

    .report-card h3 {
        font-size: 1.3rem;
    }
}