@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 15px;
    flex: 1;
    background: #f9fafb;
    box-sizing: border-box;
    width: 100%;
}

.hero-section {
    position: relative;
    margin-bottom: 0;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    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: 2.2rem;
    color: #005b2e;
    margin: 0 0 0.5rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.hero-text-section p {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1.5rem 0;
    font-family: 'Roboto', sans-serif;
}

.documents-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.documents-section h2 {
    font-size: 2rem;
    color: #333;
    margin: 0 0 2.5rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    position: relative;
}

.documents-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #005b2e, #00a650);
    margin: 0.5rem auto 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.document-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #005b2e, #00a650);
}

.card-inner {
    text-align: center;
}

.document-card i {
    font-size: 2.5rem;
    color: #00a650;
    margin-bottom: 1rem;
}

.document-card h3 {
    font-size: 1.5rem;
    color: #005b2e;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.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: 'Roboto', sans-serif;
}

html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        height: 300px;
        border-radius: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .hero-text-section {
        transform: translateY(-30px);
        padding: 1.5rem;
    }

    .hero-text-section h1 {
        font-size: 1.8rem;
    }

    .hero-text-section p {
        font-size: 1.1rem;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .document-card {
        padding: 2.5rem;
    }

    .document-card i {
        font-size: 3rem;
    }

    .document-card h3 {
        font-size: 1.6rem;
    }

    .disclaimer-section p {
        font-size: 1rem;
    }
}

@media (max-width: 479px) {
    .hero-section {
        height: 250px;
    }

    .document-card h3 {
        font-size: 1.5rem;
    }
}