/* Banner Section */
        .banner-section {
            position: relative;
            height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
            z-index: 2;
        }

        .banner-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .banner-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .banner-subtitle {
            font-size: 20px;
            font-weight: 400;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content Section */
        .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: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Table Styles */
        .table-container {
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            margin-bottom: 40px;
        }

        .resources-table {
            width: 100%;
            border-collapse: collapse;
        }

        .resources-table thead {
            background: var(--secondary-color);
            color: var(--white);
        }

        .resources-table th {
            padding: 20px;
            text-align: center;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.5px;
        }

        .resources-table th:first-child {
            border-top-left-radius: 16px;
        }

        .resources-table th:last-child {
            border-top-right-radius: 16px;
            text-align: center;
        }

        .resources-table tbody tr {
            border-bottom: 1px solid var(--border-color);
            transition: background-color 0.3s ease;
            text-align: center;
        }

        .resources-table tbody tr:hover {
            background-color: rgba(36, 92, 61, 0.05);
        }

        .resources-table tbody tr:last-child {
            border-bottom: none;
        }

        .resources-table td {
            padding: 20px;
            font-size: 15px;
            color: var(--text-dark);
        }

        .resources-table td:first-child {
            font-weight: 600;
            color: var(--primary-color);
        }

        .resources-table td:last-child {
            text-align: center;
        }

        .serial-number {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: var(--secondary-color);
            color: var(--white);
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            font-weight: 600;
            font-size: 14px;
        }

        .document-title {
            font-weight: 600;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .document-title:hover {
            color: var(--primary-color);
        }

        .pdf-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .pdf-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .pdf-icon {
            width: 20px;
            height: 20px;
        }

        /* Search and Filter Section */
        .controls-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            gap: 20px;
            flex-wrap: wrap;
        }

        .search-box {
            flex: 1;
            max-width: 400px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 16px 12px 45px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(36, 92, 61, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: var(--text-light);
        }

        .filter-dropdown {
            padding: 12px 20px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 15px;
            background: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .filter-dropdown:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(36, 92, 61, 0.1);
        }

        /* No Results Message */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-light);
        }

        .no-results-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .no-results-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .no-results-text {
            font-size: 16px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu-wrapper {
                display: none;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .banner-title {
                font-size: 32px;
            }

            .banner-subtitle {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .controls-section {
                flex-direction: column;
                align-items: stretch;
            }

            .search-box {
                max-width: 100%;
            }

            .resources-table {
                font-size: 14px;
            }

            .resources-table th,
            .resources-table td {
                padding: 15px 10px;
            }

            .pdf-link {
                padding: 8px 15px;
                font-size: 13px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .banner-title {
                font-size: 24px;
            }

            .section-title {
                font-size: 24px;
            }

            .resources-table {
                font-size: 12px;
            }

            .resources-table th,
            .resources-table td {
                padding: 10px 8px;
            }

            .serial-number {
                width: 25px;
                height: 25px;
                line-height: 25px;
                font-size: 12px;
            }

            .pdf-link {
                padding: 6px 12px;
                font-size: 12px;
            }

            .pdf-icon {
                width: 16px;
                height: 16px;
            }
        }