        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --maroon: #7A003C;
            --yellow: #FDBF57;
            --blue: #0D5D78;
            --black: #000000;
            --white: #FFFFFF;
            --light-grey: #DBDBDD;
            --grey: #495965;
        }

        body {
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--black);
            background: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Header */
        .top-bar {
            background: var(--maroon);
            color: var(--white);
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar a {
            color: var(--white);
            text-decoration: none;
            margin-left: 20px;
            display: inline-block;
            padding: 8px 15px;
            margin: -8px 0 -8px 20px;
        }

        .top-bar a.highlighted {
            background: rgba(0, 0, 0, 0.4);
        }

        /* Main Header */
        .main-header {
            position: relative;
            overflow: hidden;
            background: var(--white);
            border-bottom: 1px solid var(--light-grey);
            padding: 20px 0;
        }

        .main-header .bg-decoration {
            position: absolute;
            top: -70px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-image: url('images/Waves-brightyellow.png');
            background-size: contain;
            background-repeat: no-repeat;
            transform: rotate(-15deg);
            opacity: 0.6;
            pointer-events: none;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--maroon);
            text-decoration: none;
        }

        .logo-subtitle {
            font-size: 14px;
            color: var(--grey);
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Navigation */
        nav {
            background: var(--light-grey);
            border-bottom: 3px solid var(--yellow);
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        body > nav {
            max-width: none;
            padding: 0 calc((100% - 1200px) / 2 + 20px);
        }

        nav ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .nav-right {
            display: flex;
            align-items: center;
        }

        .language-select {
            padding: 8px 12px;
            border: 1px solid var(--light-grey);
            border-radius: 4px;
            background: var(--white);
            font-family: 'Roboto', sans-serif;
            font-size: 14px;
            cursor: pointer;
            color: var(--black);
        }

        .language-select:focus {
            outline: none;
            border-color: var(--maroon);
        }

        nav li {
            position: relative;
        }

        nav a {
            display: block;
            padding: 15px 20px;
            color: var(--black);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: background 0.3s;
        }

        nav a:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        /* Hero Section */
        .hero {
            background: var(--blue);
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 80px 20px;
            text-align: center;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--light-grey);
            padding: 15px 20px;
            font-size: 14px;
        }

        .breadcrumb-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .breadcrumb a {
            color: var(--blue);
            text-decoration: none;
            margin-right: 5px;
        }

        .breadcrumb span {
            margin: 0 5px;
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .content-section {
            margin-bottom: 60px;
        }

        .content-section h2 {
            font-size: 36px;
            color: var(--maroon);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .content-section h3 {
            font-size: 28px;
            color: var(--black);
            margin: 30px 0 15px;
        }

        .content-section p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: var(--black);
        }

        /* Feature Box */
        .feature-box {
            background: var(--light-grey);
            padding: 40px;
            margin: 40px 0;
            border-left: 5px solid var(--maroon);
        }

        .feature-box h3 {
            color: var(--maroon);
            margin-top: 0;
        }

        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .project-card {
            background: var(--white);
            box-shadow: 0px 13px 25px 4px rgba(0, 0, 0, 0.06);
            /*border: 1px solid var(--light-grey);*/
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .project-card:hover {
            transform: translateY(-2px);
            box-shadow: 0px 13px 25px 4px rgba(0, 0, 0, 0.1);
        }

        .project-card-image {
            width: 100%;
            height: 200px;
            background: var(--maroon);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            font-weight: 700;
        }

        .project-card-content {
            padding: 25px;
        }

        .project-card h4 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--maroon);
        }

        .project-card p {
            font-size: 15px;
            margin-bottom: 20px;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 15px;
        }

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

        .btn-primary:hover {
            background: var(--black);
        }

        .btn-secondary {
            background: transparent;
            color: var(--maroon);
            border: 2px solid var(--maroon);
        }

        .btn-secondary:hover {
            background: var(--maroon);
            color: var(--white);
        }

        .btn-yellow {
            background: var(--yellow);
            color: var(--black);
            border: 2px solid var(--yellow);
        }

        .btn-yellow:hover {
            background: var(--white);
        }

        /* Sidebar */
        .content-with-sidebar {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            margin-top: 40px;
        }

        .sidebar {
            background: var(--light-grey);
            padding: 30px;
            border-radius: 8px;
        }

        .sidebar h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--maroon);
        }

        .sidebar ul {
            list-style: none;
        }

        .sidebar li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--light-grey);
        }

        .sidebar li:last-child {
            border-bottom: none;
        }

        .sidebar a {
            color: var(--blue);
            text-decoration: none;
            font-weight: 500;
        }

        .sidebar a:hover {
            text-decoration: underline;
        }

        /* Video Section */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .video-card {
            background: var(--white);
            box-shadow: 0px 13px 25px 4px rgba(0, 0, 0, 0.06);
            /*border: 1px solid var(--light-grey);*/
            border-radius: 8px;
            overflow: hidden;
        }

        .video-thumbnail {
            width: 100%;
            height: 180px;
            background: var(--grey);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .play-button {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--maroon);
        }

        .video-card h4 {
            padding: 20px;
            font-size: 18px;
        }

        /* Divider */
        .divider {
            width: 60px;
            height: 4px;
            background: var(--maroon);
            margin: 40px 0;
        }

        /* Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--yellow);
        }

        .footer-section p,
        .footer-section a {
            font-size: 14px;
            line-height: 1.8;
            color: var(--light-grey);
            text-decoration: none;
        }

        .footer-section a:hover {
            color: var(--yellow);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 10px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid var(--grey);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--light-grey);
        }

        .footer-bottom a {
            color: var(--light-grey);
            text-decoration: none;
            margin-left: 20px;
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        /* Newsletter Form */
        .newsletter-form {
            /*background: var(--light-grey);*/
            box-shadow: 0px 13px 25px 4px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-top: 40px;
            border-radius: 8px;
            width: 100%;
        }

        .newsletter-form h3 {
            font-size: 24px;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .newsletter-form p {
            margin-bottom: 25px;
            color: var(--grey);
        }

        .newsletter-form form {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .form-group {
            flex: 1;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            font-size: 16px;
            border: 2px solid var(--light-grey);
            border-radius: 4px;
            font-family: 'Roboto', sans-serif;
            transition: border-color 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--maroon);
        }

        .form-group input::placeholder {
            color: var(--grey);
        }

        .newsletter-form .btn {
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* Search Section */
        .search-section {
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.7);
            box-shadow: 0px 13px 25px 4px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            padding: 20px 20px;
            border-radius: 8px;
            margin-bottom: 10px;
            z-index: 100;
        }

        .search-section.is-sticky {
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            padding-left: calc(50vw - 50% + 40px);
            padding-right: calc(50vw - 50% + 40px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        }

        .search-bar-container {
            margin-bottom: 0px;
        }

        .search-bar {
            display: flex;
            gap: 15px;
            margin-bottom: 10px;
        }

        .search-bar input[type="text"] {
            flex: 1;
            padding: 15px 20px;
            font-size: 16px;
            border: 2px solid var(--light-grey);
            border-radius: 4px;
            font-family: 'Roboto', sans-serif;
        }

        .search-bar input[type="text"]:focus {
            outline: none;
            border-color: var(--maroon);
        }

        .search-bar button {
            padding: 15px 40px;
            background: var(--maroon);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }

        .search-bar button:hover {
            background: var(--black);
        }

        /* Filter Options */
        .filters-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
        }

        .filter-group label {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--grey);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .filter-group select {
            padding: 12px 15px;
            font-size: 15px;
            border: 2px solid var(--light-grey);
            border-radius: 4px;
            background: var(--white);
            font-family: 'Roboto', sans-serif;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .filter-group select:focus {
            outline: none;
            border-color: var(--maroon);
        }

        /* Resources Gallery */
        .resources-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .resource-card {
            background: var(--white);
            box-shadow: 0px 13px 25px 4px rgba(0, 0, 0, 0.06);
            /*border: 1px solid var(--light-grey);*/
            border-radius: 8px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .resource-card:hover {
            transform: translateY(-2px);
            box-shadow: 0px 13px 25px 4px rgba(0, 0, 0, 0.1);
        }

        .resource-card h3 {
            font-size: 20px;
            color: var(--black);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .resource-card p {
            font-size: 15px;
            line-height: 1.6;
            color: var(--grey);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .resource-card em {
            color: var(--black);
            font-style: normal;
            font-weight: 900;
            background-color: #f7e6c8;
        }

        .resource-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .tag {
            display: inline-block;
            padding: 5px 12px;
            background: var(--yellow);
            color: var(--black);
            font-size: 12px;
            font-weight: 500;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tag.region {
            background: var(--blue);
            color: var(--white);
        }

        .tag.language {
            background: var(--grey);
            color: var(--white);
        }

        .resource-actions {
            display: flex;
            gap: 10px;
        }

        .resource-actions a {
            flex: 1;
            text-align: center;
            padding: 10px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .resource-actions .btn-download {
            background: var(--maroon);
            color: var(--white);
        }

        .resource-actions .btn-download:hover {
            background: var(--black);
        }

        .resource-actions .btn-view {
            background: transparent;
            color: var(--blue);
            border: 2px solid var(--blue);
        }

        .resource-actions .btn-view:hover {
            background: var(--blue);
            color: var(--white);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 50px;
            padding: 20px 0;
        }

        .pagination button,
        .pagination .page-number {
            padding: 10px 15px;
            border: 2px solid var(--light-grey);
            background: var(--white);
            color: var(--black);
            border-radius: 4px;
            cursor: pointer;
            font-size: 15px;
            transition: all 0.3s;
        }

        .pagination button:hover,
        .pagination .page-number:hover {
            background: var(--light-grey);
        }

        .pagination .page-number.active {
            background: var(--maroon);
            color: var(--white);
            border-color: var(--maroon);
        }

        .pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .results-count {
            text-align: center;
            color: var(--grey);
            margin-top: 20px;
            font-size: 15px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-category {
            margin-bottom: 40px;
        }

        .faq-category h3 {
            color: var(--maroon);
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--yellow);
        }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--light-grey);
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            font-size: 16px;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: var(--light-grey);
        }

        .faq-question.active {
            background: var(--light-grey);
        }

        .faq-icon {
            font-size: 20px;
            font-weight: bold;
            color: var(--maroon);
            transition: transform 0.3s;
        }

        .faq-question.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-answer-content {
            padding: 0 20px 20px 20px;
            color: var(--grey);
            line-height: 1.8;
        }

        .faq-answer-content a {
            color: var(--blue);
            text-decoration: none;
        }

        .faq-answer-content a:hover {
            text-decoration: underline;
        }

        .faq-branch {
            margin-top: 15px;
            padding: 15px;
            background: var(--light-grey);
            border-radius: 8px;
        }

        .faq-branch p {
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--black);
        }

        .branch-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .branch-btn {
            padding: 10px 20px;
            background: var(--white);
            border: 2px solid var(--blue);
            border-radius: 4px;
            color: var(--blue);
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .branch-btn:hover {
            background: var(--blue);
            color: var(--white);
        }

        .branch-result {
            margin-top: 15px;
            padding: 15px;
            background: var(--white);
            border-left: 4px solid var(--yellow);
            border-radius: 0 8px 8px 0;
            display: none;
        }

        .branch-result.active {
            display: block;
        }

        .contact-box {
            background: var(--light-grey);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            margin-top: 40px;
        }

        .contact-box h3 {
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .contact-box p {
            margin-bottom: 20px;
            color: var(--grey);
        }

        .skeleton {
            background: linear-gradient(90deg, var(--light-grey) 25%, #e8e8e8 50%, var(--light-grey) 75%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
            border-radius: 4px;
        }

        @keyframes skeleton-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .skeleton-card {
            background: var(--light-grey);
            border: 1px solid var(--light-grey);
            border-radius: 8px;
            padding: 25px;
        }

        .skeleton-title {
            height: 24px;
            width: 80%;
            margin-bottom: 15px;
        }

        .skeleton-text {
            height: 16px;
            width: 100%;
            margin-bottom: 10px;
        }

        .skeleton-text.short {
            width: 60%;
        }

        .skeleton-tags {
            display: flex;
            gap: 8px;
            margin: 20px 0;
        }

        .skeleton-tag {
            height: 28px;
            width: 70px;
            border-radius: 20px;
        }

        .skeleton-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .skeleton-button {
            height: 40px;
            flex: 1;
            border-radius: 4px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .content-with-sidebar {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 32px;
            }

            .content-section h2 {
                font-size: 28px;
            }

            nav {
                display: block;
            }

            nav ul {
                /*flex-direction: column;*/
            }

            .nav-right {
                margin-left: 10px;
                margin-bottom: 10px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom a {
                margin: 10px 0;
            }

            .newsletter-form form {
                flex-direction: column;
                align-items: stretch;
            }

            .newsletter-form .btn {
                width: 100%;
            }

            .search-bar {
                flex-direction: column;
            }

            .search-bar button {
                width: 100%;
            }

            .filters-container {
                grid-template-columns: 1fr;
            }

            .resources-gallery {
                grid-template-columns: 1fr;
            }

            .search-section {
                position: relative !important;
                margin-bottom: 10px !important;
                padding: 20px !important;
                box-shadow: 0px 13px 25px 4px rgba(0, 0, 0, 0.1) !important;
                margin-left: calc(-50vw + 50%);
                margin-right: calc(-50vw + 50%);
            }

            .search-section,
            .search-section.is-sticky {
                transition: none !important;
                animation: none !important;
                transform: none !important;
                filter: none !important;
            }

            .main-header .bg-decoration {
                display: none;
            }

            .pagination {
                display: block;
            }

            .pagination .page-number{
                margin-top: 5px;
                margin-bottom: 5px;
            }
        }
