:root {
        --primary-color: #245c3d;
        --secondary-color: #d62929;
        --text-dark: #1a1a1a;
        --text-light: #6b7280;
        --bg-light: #fafafa;
        --white: #ffffff;
        --border-color: #e5e7eb;
    }

    /* ── Banner ── */
    .banner-section {
        position: relative;
        height: 400px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .banner-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
    .banner-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,0));
        z-index: 2;
    }
    .banner-content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: #fff;
        padding: 0 20px;
    }
    .banner-title {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0,0,0,.3);
    }
    .banner-subtitle {
        font-size: 20px;
        font-weight: 400;
        opacity: .9;
        max-width: 600px;
        margin: 0 auto;
    }

    /* ── Main content ── */
    .main-content {
        padding: 80px 20px;
        background-color: var(--white);
    }
    .content-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .section-title {
        text-align: center;
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 20px;
        background: var(--secondary-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .section-subtitle {
        text-align: center;
        font-size: 18px;
        color: var(--text-light);
        margin-bottom: 60px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ── Documents sections ── */
    .documents-section {
        margin-bottom: 60px;
    }
    .documents-section:last-child {
        margin-bottom: 0;
    }
    .documents-section-title {
        font-size: 24px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 25px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--secondary-color);
        display: inline-block;
    }
    .documents-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* ── Document item ── */
    .document-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background: var(--bg-light);
        border-radius: 12px;
        border: 1px solid var(--border-color);
        transition: all .3s ease;
    }
    .document-item:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,.08);
        border-color: rgba(36,92,61,.3);
        transform: translateY(-2px);
    }
    .document-info {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 1;
        min-width: 0;
    }
    .file-icon {
        width: 45px;
        height: 45px;
        background: rgba(214,41,41,.1);
        color: var(--secondary-color);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .file-name {
        font-weight: 600;
        color: var(--text-dark);
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .document-actions {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
        margin-left: 20px;
    }

    /* ── Buttons ── */
    .btn-doc {
        padding: 10px 18px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all .3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: none;
        font-family: inherit;
    }
    .btn-view {
        background: var(--white);
        color: var(--primary-color);
        border: 1.5px solid var(--primary-color);
    }
    .btn-view:hover {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(36,92,61,.2);
    }
    .btn-download {
        background: var(--secondary-color);
        color: var(--white);
    }
    .btn-download:hover {
        background: #b91c1c;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(214,41,41,.3);
        color: var(--white);
    }

    /* ── Empty state ── */
    .empty-state {
        text-align: center;
        padding: 60px 20px;
        color: var(--text-light);
        font-size: 16px;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .banner-title  { font-size: 32px; }
        .banner-subtitle { font-size: 16px; }
        .section-title { font-size: 28px; }
        .document-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
        }
        .document-actions {
            width: 100%;
            margin-left: 0;
        }
        .btn-doc {
            flex: 1;
            justify-content: center;
            padding: 12px 10px;
        }
    }
    @media (max-width: 576px) {
        .banner-title { font-size: 24px; }
        .section-title { font-size: 24px; }
        .documents-section-title { font-size: 20px; }
    }
