@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Global Variables */
:root {
    --primary-teal: #036760;
    --primary-teal-hover: #024B46;
    --primary-blue: #036760;
    --primary-blue-hover: #024B46;
    --primary-text: #232429;
    --secondary-text: #414141;
    --bg-light-teal: #E6EFEF;
    --footer-bg: #FFFFFF;
    --border-color: #CBD5E1;
    --font-main: 'Open Sans', Verdana, Geneva, Tahoma, sans-serif;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--primary-text);
    background-color: var(--bg-light-teal);
    line-height: 1.5;
    overflow-x: hidden;
}

button, input, select, textarea {
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Placeholder & Dark Framing Band */
#header-placeholder {
    z-index: 1000;
    display: flow-root;
    box-sizing: border-box;
    width: 100%;
}

/* Subpages: Dark teal background wrapper framing the floating card */
body:not(.home-page) #header-placeholder {
    background-color: #2D5D55;
}

/* Homepage: Background image extends all the way to top behind the floating header */
body.home-page {
    position: relative;
}

body.home-page::before {
    display: none;
}

body.home-page #header-placeholder {
    position: sticky;
    top: 0;
    background-color: transparent;
    pointer-events: none;
    z-index: 1000;
}

body.home-page .site-header {
    pointer-events: auto;
}

/* White Header Card (Extended to edges with slim framing gap all around) */
.site-header {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: none;
    padding: 20px 28px;
    margin: 12px 18px;
    width: calc(100% - 36px);
    max-width: none; /* Extends edge-to-edge on all display widths */
    overflow: visible;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Header Container (Centers content inside the extended card with generous breathing room) */
.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

/* Desktop & Laptop Breakpoints: Card stays extended with centered content */
@media (min-width: 1441px) {
    .site-header {
        margin: 12px 20px;
        width: calc(100% - 40px);
        max-width: none;
        padding: 22px 32px;
    }
    .header-container {
        max-width: 1400px;
    }
}

@media (max-width: 1440px) {
    .site-header {
        margin: 10px 18px;
        width: calc(100% - 36px);
        max-width: none;
        padding: 18px 24px;
    }
    .header-container {
        max-width: 1200px;
    }
    .branding .cgs-logo {
        height: 74px;
    }
}

@media (max-width: 1200px) {
    .site-header {
        margin: 8px 14px;
        width: calc(100% - 28px);
        max-width: none;
        padding: 16px 20px;
    }
    .header-container {
        max-width: 100%;
        padding: 0;
    }
    .branding .cgs-logo {
        height: 68px;
    }
}

/* Branding & Logo Dimensions */
.branding {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.branding .cgs-logo {
    height: 80px; /* Desktop height: 80px scaled to maintain crispness */
    width: auto;
    display: block;
    transition: height 0.2s ease;
}

/* Main Navigation */
.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 28px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-text, #232429);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active,
.nav-item-dropdown.active > .dropdown-toggle,
.nav-item-dropdown.open > .dropdown-toggle {
    color: var(--primary-teal, #036760);
    font-weight: 600;
}

/* Animated Chevron Indicators */
.nav-icon {
    font-size: 11px;
    color: #666;
    transition: transform 0.25s ease, color 0.2s ease;
    display: inline-block;
}

.nav-item-dropdown:hover .nav-icon,
.nav-item-dropdown.open .nav-icon,
.nav-item-dropdown:focus-within .nav-icon,
.nav-item-dropdown.active > .dropdown-toggle .nav-icon {
    transform: rotate(180deg);
    color: var(--primary-teal, #036760);
}

/* Dropdown Menus */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-color, #E5E7EB);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1050;
}

/* Invisible Hover "Bridge": extends 10px above menu into the gap */
.nav-item-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    display: block;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-dropdown.closed .dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(6px) !important;
    pointer-events: none !important;
}

.nav-item-dropdown.closed .nav-icon {
    transform: rotate(0deg) !important;
    color: #666 !important;
}

.nav-item-dropdown.closed > .dropdown-toggle {
    color: var(--primary-text, #232429) !important;
    font-weight: 500 !important;
}

.nav-item-dropdown.active.closed > .dropdown-toggle {
    color: var(--primary-teal, #036760) !important;
    font-weight: 600 !important;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-text, #232429);
    display: block;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: var(--bg-light-teal, #E6EFEF);
    color: var(--primary-teal, #036760);
}

/* Header Actions & Search */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* Search Input Dimensions */
.search-input {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color, #CBD5E1);
    border-radius: 4px;
    width: 180px;
    padding: 8px 30px 8px 12px;
    font-size: 14px;
    color: var(--primary-text, #232429);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input:focus {
    border-color: var(--primary-teal, #036760);
    box-shadow: 0 0 0 3px rgba(3, 103, 96, 0.15);
}

.search-btn {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color 0.2s ease;
}

.search-btn:hover {
    color: var(--primary-teal, #036760);
}

/* Search Results Dropdown (Fuse.js) */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: #FFFFFF;
    border: 1px solid var(--border-color, #E5E7EB);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 400px;
    overflow-y: auto;
    z-index: 2000;
    display: none;
}

.search-results-dropdown.active {
    display: block;
}

.search-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid #F3F4F6;
    display: block;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #F9FAFB;
}

.result-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-teal, #036760);
    margin-bottom: 2px;
}

.result-category {
    font-size: 10px;
    text-transform: uppercase;
    color: #9CA3AF;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    display: block;
}

.result-snippet {
    display: block;
    font-size: 12px;
    color: #6B7280;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #9CA3AF;
    font-size: 14px;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--primary-teal, #036760);
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

/* Mobile Responsive Navigation (Drawer Mode at ≤ 768px) */
@media (max-width: 768px) {
    .site-header {
        margin: 12px 16px;
        width: calc(100% - 32px);
        padding: 14px 18px;
        border-radius: 10px;
    }

    .header-container {
        padding: 0;
    }

    .branding .cgs-logo {
        height: 58px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Absolute-positioned drawer card below the header (left: 24px; right: 24px; top: 100%) */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 24px;
        right: 24px;
        margin-top: 8px;
        background-color: #FFFFFF;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border: 1px solid var(--border-color, #CBD5E1);
        padding: 16px 20px;
        z-index: 1100;
        width: auto;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
    }

    .main-nav a {
        padding: 10px 12px;
        font-size: 15px;
        width: 100%;
        justify-content: space-between;
        border-radius: 6px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background-color: var(--bg-light-teal, #E6EFEF);
    }

    .nav-item-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary-teal, #036760);
        margin: 4px 0 6px 12px;
        padding: 4px 0 4px 12px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        background-color: transparent;
    }

    .nav-item-dropdown.open .dropdown-menu {
        display: flex;
    }

    .nav-item-dropdown .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .search-input {
        width: 140px;
    }

    .search-results-dropdown {
        right: -40px;
        width: 280px;
    }
}

/* ========================================= */
/* FOOTER STYLES                             */
/* ========================================= */

/* 1. Sign-up Block (Top Footer) */
.footer-top {
    background-color: var(--primary-blue); 
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.footer-top h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.footer-top p {
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 400;
}

.signup-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.signup-form input {
    width: 100%;
    padding: 14px 44px 14px 20px;
    border-radius: 24px; /* nice pill shape */
    border: none;
    font-size: 14px;
    color: var(--primary-text);
}

.signup-form input::placeholder {
    color: #999;
}

.signup-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    width: 32px;
    height: 32px;
    border-radius: 50%; /* Circular */
    background-color: #FFFFFF;
    color: var(--primary-blue);
    border: 2px solid #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

/* 2. Main Informational Footer (Bottom Footer) */
.footer-bottom {
    background-color: #FFFFFF;
    padding: 60px 40px;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Center everything as requested */
    gap: 120px; /* <leave some space> between left panel and columns */
}

.footer-left-section {
    flex-shrink: 0;
}

.footer-address {
    font-size: 14px; /* Reduced from 15px */
    color: var(--primary-text);
    line-height: 1.6;
}

.footer-address strong {
    font-weight: 700;
}

.footer-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.cgs-footer-logo {
    height: 70px; /* Increased CGS logo size for footer */
    margin-bottom: 24px;
    display: block;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    font-size: 15px; /* Increased */
    color: var(--secondary-text);
    font-weight: 400;
}

.social-links a img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 4px; /* Very slight rounding for JPEGs */
    object-fit: cover;
}

.footer-col h3 {
    font-size: 16px; /* Increased */
    font-weight: 700;
    color: var(--primary-blue); /* Changed to blue matching theme */ 
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Increased gap */
}

.footer-col ul a, .contact-link {
    font-size: 14px; /* Reduced from 15px */
    color: var(--primary-text);
    font-weight: 400; /* Removed bold */
}

.contact-link {
    display: inline-block;
}

/* ========================================= */
/* HERO SECTION                              */
/* ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    margin: 0;
    margin-top: -154px; /* Extends hero all the way to top of page behind floating header */
    padding-top: 194px; /* Clears floating header card with comfortable spacing */
    padding-bottom: 85px;
    min-height: 520px;
    background-image: linear-gradient(rgba(10, 24, 22, 0.60), rgba(10, 24, 22, 0.70)), url('Web Content/banners/homepage_hero_city.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.hero-banner-title {
    font-size: 46px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.hero-banner-text {
    max-width: 840px;
    font-size: 16.5px;
    line-height: 1.8;
    color: #FFFFFF;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
    -webkit-text-align-last: center;
    -moz-text-align-last: center;
    margin: 0 auto;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1440px) {
    .hero-section {
        margin-top: -130px;
        padding-top: 170px;
        padding-bottom: 70px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: -104px;
        padding-top: 135px;
        padding-bottom: 50px;
    }

    .hero-container {
        padding: 0 24px;
    }

    .hero-banner-title {
        font-size: 32px;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero-banner-text {
        font-size: 15px;
        line-height: 1.65;
        text-align: justify;
        text-justify: inter-word;
        text-align-last: center;
    }
}

.btn-primary {
    background-color: #6C8E68; /* Green button matching screenshot */
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px; /* Pillow shape matching screenshot */
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.btn-primary:visited,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.download-link,
.download-link:visited,
.download-link:hover,
.download-link:active,
.download-link:focus {
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.btn-primary:hover {
    background-color: #557252;
}

/* ========================================= */
/* EXPLORE SECTION & CAROUSEL                */
/* ========================================= */
.explore-section {
    background-color: #FFFFFF;
    padding: 70px 0;
    width: 100%;
}

.explore-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-outer-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    margin: 0 auto;
}

.carousel-circle-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--primary-teal, #036760);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(3, 103, 96, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-circle-arrow:hover {
    background-color: var(--primary-teal-hover, #024B46);
    transform: scale(1.1);
}

.carousel-slide-viewport {
    flex: 1;
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-card-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 52px;
    background-color: var(--bg-light-teal, #E6EFEF);
    border-radius: 24px;
    padding: 48px 56px;
    box-shadow: 0 8px 30px rgba(3, 103, 96, 0.08);
    border: 1px solid #D2E2E2;
}

.slide-card-image {
    flex: 1;
    max-width: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
}

.slide-map-img,
.slide-report-img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.slide-map-img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: block;
}

.slide-report-img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    display: block;
}

.slide-card-body {
    flex: 1.2;
}

.slide-card-body h3 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-text, #1E293B);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.slide-card-body p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--secondary-text, #334155);
    margin-bottom: 28px;
}

.slide-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-teal, #036760);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.slide-learn-more:hover {
    color: var(--primary-teal-hover, #024B46);
    transform: translateX(4px);
}

/* ========================================= */
/* PAGE HERO BANNER (Reusable for subpages)  */
/* ========================================= */
.page-hero {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-hero-img,
.about-page .page-hero-img {
    object-position: center 20%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%
    );
}

.page-hero-title {
    position: relative;
    z-index: 2;
    font-size: 56px;
    font-weight: 800;
    color: #FFFFFF;
    padding: 40px 60px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Subpage body background */
body.about-page {
    background-color: #FFFFFF;
}

@media (max-width: 992px) {
    body.home-page::before {
        height: 124px;
    }

    #header-placeholder {
        padding: 14px 18px;
    }

    body.home-page #header-placeholder {
        padding: 14px 18px;
    }

    .site-header {
        border-radius: 20px;
    }

    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    body.home-page::before {
        height: 110px;
    }

    #header-placeholder {
        padding: 12px 12px;
    }

    body.home-page #header-placeholder {
        padding: 12px 12px;
    }

    .site-header {
        border-radius: 16px;
        padding: 6px 0;
    }

    .header-container {
        padding: 0 16px;
    }
}

/* ========================================= */
/* ABOUT THE PROJECT SECTION                 */
/* ========================================= */
.about-project-section {
    background-color: #F5F8FA;
    padding: 80px 0;
}

.about-project-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-project-container h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1A365D;
    margin-bottom: 32px;
}

.about-project-container > p {
    font-size: 15px; /* Reduced from 16px */
    line-height: 1.85;
    color: #444;
}

/* ========================================= */
/* ABOUT CGS SECTION                         */
/* ========================================= */
.about-cgs-section {
    background-color: var(--bg-light-teal, #E6EFEF);
    padding: 72px 0;
    width: 100%;
}

.about-cgs-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.about-cgs-image {
    flex: 0 0 440px;
    max-width: 440px;
}

.about-cgs-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: block;
}

.about-cgs-text {
    flex: 1;
}

.about-cgs-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.about-cgs-text p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--secondary-text, #334155);
    margin-bottom: 0;
}

/* ========================================= */
/* FAQ PAGE                                  */
/* ========================================= */
.faq-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.faq-section-alt {
    background-color: #F5F8FA;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-container h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1A365D;
    margin-bottom: 32px;
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: #F6F8FA;
    transition: background-color 0.3s ease;
}

.faq-item.open {
    background-color: #EBF3FA;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: #1A365D;
    gap: 20px;
}

.faq-question:hover {
    opacity: 0.85;
}

.faq-icon {
    font-size: 26px;
    font-weight: 400;
    flex-shrink: 0;
    color: #1A365D;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.open .faq-answer {
    max-height: 800px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 12px;
}

.faq-answer ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 12px;
}

.faq-answer ul li {
    font-size: 14px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 4px;
}

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

/* FAQ Table */
.faq-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border: 1px solid #CCC;
}

.faq-table td {
    padding: 16px 20px;
    border: 1px solid #CCC;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    vertical-align: top;
}

.faq-table td:first-child {
    width: 45%;
    font-weight: 600;
}

.faq-table ul {
    margin-left: 20px;
    margin-bottom: 0;
}

/* Contact Section */
.faq-contact-section {
    background-color: #1A365D;
    padding: 60px 0;
    text-align: center;
}

.faq-contact-section h2 {
    font-size: 30px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.faq-contact-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.faq-contact-section a {
    color: #A0C4E8;
    text-decoration: underline;
}

/* ========================================= */
/* DATA PAGE                                 */
/* ========================================= */
.data-section {
    background-color: #FFFFFF;
    padding: 70px 0 80px;
}

.data-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.data-description {
    font-size: 15px; /* Reduced from 16px */
    line-height: 1.85;
    color: #444;
    margin-bottom: 24px;
}

.data-description em {
    font-style: italic;
}

.data-description a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.data-description a:hover {
    color: var(--primary-blue-hover);
}


/* Data Table */
.data-table-wrapper {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

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

.data-table thead {
    background-color: #1A365D;
}

.data-table thead th {
    padding: 18px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: left;
}

.data-table thead th:first-child,
.data-table tbody td:first-child {
    width: 75%;
}

.data-table thead th:last-child,
.data-table tbody td:last-child {
    width: 25%;
}

.data-table tbody tr {
    border-bottom: 1px solid #E5E7EB;
    transition: background-color 0.2s ease;
}

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

.data-table tbody tr:nth-child(even) {
    background-color: #F7FAFC;
}

.data-table tbody tr:hover {
    background-color: #EAF4FC;
}

.data-table tbody td {
    padding: 18px 28px;
    font-size: 14px; /* Reduced from 15px */
    color: #333;
    vertical-align: middle;
}

.data-table tbody td em {
    font-style: italic;
    color: #555;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.download-link:hover {
    color: var(--primary-blue-hover);
    text-decoration: underline;
}

.download-link i {
    font-size: 16px;
}

/* Zip All Button */
.data-zip-all {
    margin-top: 40px;
    text-align: center;
}

.data-zip-all .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ========================================= */
/* PRIVACY POLICY PAGE                       */
/* ========================================= */
.policy-section {
    background-color: #FFFFFF;
    padding: 70px 0 80px;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.policy-intro {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 24px;
}

.policy-container h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1A365D;
    margin-top: 48px;
    margin-bottom: 16px;
}

.policy-container h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A365D;
    margin-top: 28px;
    margin-bottom: 12px;
}

.policy-container p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 16px;
}

.policy-container a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.policy-list {
    list-style: disc;
    margin-left: 28px;
    margin-bottom: 24px;
}

.policy-list li {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 8px;
}

/* ========================================= */
/* REPORTS PAGE                              */
/* ========================================= */

/* Executive Summary */
.report-summary-section {
    background-color: #FFFFFF;
    padding: 70px 0 40px;
}

.report-summary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.report-summary-text {
    flex: 1;
}

.report-summary-text h2 {
    font-size: 32px; /* Reduced from 36px */
    font-weight: 800;
    color: #1A365D;
    margin-bottom: 24px;
}

.report-summary-text p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 20px;
}

.report-summary-text .btn-primary {
    margin-top: 12px;
}

.report-summary-image {
    flex: 0 0 300px;
}

.report-summary-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: block;
}

.report-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin-top: 24px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.report-actions::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.report-actions .btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Note Callout */
.report-note {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 28px;
    background-color: #E1F0FA; /* Light Blue background */
    border-left: 5px solid var(--primary-blue); /* Thematic blue border */
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.report-note i {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.report-note p {
    font-size: 14px;
    line-height: 1.7;
    color: #1A365D;
    margin: 0;
}

.report-note a {
    text-decoration: underline;
}

/* About the Chapters */
.report-chapters-section {
    background-color: #F5F8FA;
    padding: 70px 0 80px;
}

.report-chapters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.report-chapters-container > h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1A365D;
    margin-bottom: 8px;
    text-align: center;
}

.chapters-subtitle {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* Chapter Grid */
.chapter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

.chapter-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chapter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.chapter-card.active {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

.chapter-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.chapter-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
}

.card-download-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A365D;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    z-index: 10;
}

.chapter-card:hover .card-download-btn {
    opacity: 1;
    transform: translateY(0);
}

.card-download-btn:hover {
    background: #1A365D;
    color: #FFFFFF;
    transform: scale(1.1);
}

/* Chapter Detail Panel */
.chapter-detail {
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    margin: 0;
}

.chapter-detail.open {
    max-height: 600px;
    opacity: 1;
    margin: 10px 0 20px;
}

.chapter-detail-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.chapter-detail-image {
    flex: 0 0 220px;
}

.chapter-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.chapter-detail-text {
    flex: 1;
}

.chapter-detail-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1A365D;
    margin-bottom: 16px;
}

.chapter-detail-text p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 24px;
}

/* ========================================= */
/* DOWNLOAD GATE MODAL                       */
/* ========================================= */
.download-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-gate-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content-container {
    position: relative;
    background: #FFFFFF;
    width: 90%;
    max-width: 800px;
    height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.download-gate-modal.active .modal-content-container {
    transform: scale(1);
}

.modal-skip-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    padding: 10px 20px;
    background: #1A365D;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 10001;
    transition: all 0.2s ease;
}

.modal-skip-btn:hover {
    background: #2D4A77;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.modal-skip-btn:active {
    transform: translateY(0);
}

.iframe-scroll-wrapper {
    flex: 1;
    width: 100%;
    overflow: hidden; /* No custom scroll — let the form handle it */
    padding-top: 60px; /* Space for the skip button */
}

.google-form-iframe {
    width: 100%;
    height: 100%; /* Fill the wrapper fully */
    border: none;
    display: block;
}

/* ========================================= */
/* COOKIE CONSENT BANNER                      */
/* ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 420px;
    background: #FFFFFF;
    color: var(--primary-text, #232429);
    padding: 22px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(3, 103, 96, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 9998;
    display: none; /* Hidden by default */
    border: 1px solid rgba(3, 103, 96, 0.18);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 18px 0;
    color: var(--secondary-text, #414141);
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.cookie-accept-btn {
    background-color: var(--primary-teal, #036760);
    color: #FFFFFF;
    border: 1.5px solid var(--primary-teal, #036760);
    padding: 8px 22px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(3, 103, 96, 0.25);
}

.cookie-accept-btn:hover {
    background-color: var(--primary-teal-hover, #024B46);
    border-color: var(--primary-teal-hover, #024B46);
    box-shadow: 0 4px 12px rgba(3, 103, 96, 0.35);
    transform: translateY(-1px);
}

.cookie-decline-btn {
    background-color: transparent;
    color: var(--primary-teal, #036760);
    border: 1.5px solid var(--primary-teal, #036760);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-decline-btn:hover {
    background-color: var(--bg-light-teal, #E6EFEF);
    color: var(--primary-teal-hover, #024B46);
    border-color: var(--primary-teal-hover, #024B46);
}

@media (max-width: 1440px) {
    .header-container, 
    .hero-container, 
    .explore-container, 
    .about-project-container, 
    .about-cgs-container, 
    .footer-bottom-container,
    .data-container,
    .report-chapters-container,
    .report-summary-container {
        max-width: 1140px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .page-hero-title {
        font-size: 46px;
    }

    .branding .cgs-logo {
        height: 64px;
    }

    .footer-bottom-container {
        gap: 60px;
    }
}

@media (max-width: 1200px) {
    .header-container, 
    .hero-container, 
    .explore-container, 
    .about-project-container, 
    .about-cgs-container, 
    .footer-bottom-container {
        padding: 0 24px;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-grid {
        justify-content: center;
        flex-wrap: wrap;
    }

    .chapter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 24px;
        right: 24px;
        background: #FFFFFF;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-radius: 12px;
        padding: 24px;
        z-index: 1001;
        flex-grow: 0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul a {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #F0F0F0;
        font-size: 18px; /* Easier to tap */
    }

    .main-nav ul li:last-child a {
        border-bottom: none;
    }

    .hero-banner-card {
        flex-direction: column;
        min-height: auto;
    }

    .hero-banner-content {
        max-width: 100%;
        padding: 36px 24px;
    }

    .hero-banner-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-banner-image-wrapper {
        position: relative;
        width: 100%;
        height: 240px;
        clip-path: none;
    }

    .hero-image-block {
        margin-top: 40px;
        width: 100%;
    }

    .hero-cover-img {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-cgs-container {
        flex-direction: column;
        align-items: center;
    }

    .about-project-container h2 {
        font-size: 30px; /* Reduced from 32px */
    }

    .about-cgs-text h2 {
        font-size: 26px; /* Reduced from 28px */
    }

    .about-cgs-text p {
        font-size: 13px; /* Reduced from 14px */
    }

    .carousel-slide {
        flex-direction: column;
        padding: 24px;
        text-align: center;
        gap: 30px;
    }

    .slide-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 260px;
    }

    .slide-content h3 {
        font-size: 20px; /* Reduced from 22px */
    }

    .slide-content p {
        font-size: 14px; /* Reduced from 15px */
    }

    .page-hero-title {
        font-size: 36px;
        padding: 24px;
    }

    .report-summary-text h2 {
        font-size: 30px;
    }

    .report-summary-text p {
        font-size: 14px;
    }

    .report-summary-image {
        flex: 0 0 auto;
        order: -1; 
        margin-bottom: 24px;
        max-width: 220px;
    }

    .report-chapters-container > h2 {
        font-size: 28px;
    }

    .report-actions {
        flex-direction: row;
        gap: 12px !important;
    }

    .report-actions .btn-primary {
        font-size: 13px;
        padding: 10px 16px;
    }

    .chapter-grid {
        grid-template-columns: 1fr;
    }

    .chapter-detail-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .data-table-wrapper {
        overflow-x: auto;
    }

    .data-description {
        font-size: 13px; /* Reduced from 14px */
        line-height: 1.7;
    }

    .data-table thead th, 
    .data-table tbody td {
        padding: 12px 16px;
        font-size: 12px; /* Reduced from 13px */
    }

    .footer-top h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .site-header {
        margin: 8px;
        padding: 8px 12px;
        position: relative;
    }

    .header-container {
        gap: 10px;
    }

    .branding .cgs-logo {
        height: 36px; /* Even smaller for more space */
    }

    .search-container {
        flex: 1; /* Allow search to take remaining space */
        min-width: 80px;
    }

    .search-input {
        width: 100%;
        font-size: 12px;
        padding: 6px 28px 6px 10px;
    }

    .hero-text h1 {
        font-size: 22px; /* Reduced from 24px */
        padding: 0 10px;
    }

    .hero-text p {
        font-size: 14px; /* Reduced from 15px */
        padding: 0 10px;
    }

    .page-hero-title {
        font-size: 24px; /* Reduced from 26px */
        padding: 20px;
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .prev-arrow { left: 5px; }
    .next-arrow { right: 5px; }
}

@media (max-width: 360px) {
    .branding .cgs-logo {
        height: 30px;
    }
    
    .search-container {
        display: none; /* Hide search bar on extremely narrow screens to keep logo/menu visible */
    }
}

/* ========================================= */
/* DATABASE & PLACEHOLDER STYLES             */
/* ========================================= */
.db-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.db-stat-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.db-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(3, 103, 96, 0.12);
}

.db-stat-icon {
    font-size: 32px;
    color: var(--primary-teal);
    margin-bottom: 12px;
}

.db-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 4px;
}

.db-stat-label {
    font-size: 14px;
    color: #64748B;
    font-weight: 500;
}

.db-filter-bar {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.db-filter-label {
    font-weight: 700;
    color: var(--primary-teal);
    font-size: 15px;
}

.db-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.db-filter-select {
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #CBD5E1;
    font-family: var(--font-main);
    font-size: 14px;
    color: #334155;
    background-color: #F8FAFC;
    cursor: pointer;
}

.under-dev-container {
    background: linear-gradient(135deg, #036760 0%, #0d4e48 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 103, 96, 0.2);
    margin-bottom: 40px;
}

.under-dev-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 10%, transparent 60%);
    pointer-events: none;
}

.under-dev-icon {
    font-size: 52px;
    margin-bottom: 16px;
    color: #7BE0D6;
    animation: floatDevIcon 3s ease-in-out infinite;
}

@keyframes floatDevIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.under-dev-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.under-dev-desc {
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto 24px auto;
    opacity: 0.9;
    line-height: 1.6;
}

.under-dev-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.citation-box {
    background: #F1F5F9;
    border-left: 4px solid var(--primary-teal);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
}

/* ========================================= */
/* GET UPDATES BANNER & FOOTER STYLES        */
/* ========================================= */
.get-updates-section {
    background-color: var(--primary-teal);
    color: #FFFFFF;
    padding: 56px 24px;
    margin: 0;
    width: 100%;
    text-align: center;
}

.get-updates-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.get-updates-btn {
    background-color: #FFFFFF;
    color: var(--primary-teal);
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.get-updates-btn:hover {
    transform: translateY(-2px);
    background-color: #F8FAFC;
    color: var(--primary-teal-hover);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.get-updates-btn:active {
    transform: translateY(0);
}

.get-updates-desc {
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.95;
    line-height: 1.6;
    margin-top: 18px;
    margin-bottom: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* DATA-TOOLS FEEDBACK SECTION */
.data-feedback-section {
    background-color: var(--primary-teal);
    color: #FFFFFF;
    padding: 56px 24px;
    margin: 0;
    width: 100%;
    text-align: center;
}

.data-feedback-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.data-feedback-title {
    font-size: 30px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.data-feedback-desc {
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.95;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.data-feedback-btn {
    background-color: #FFFFFF;
    color: var(--primary-teal);
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.data-feedback-btn:hover {
    transform: translateY(-2px);
    background-color: #F8FAFC;
    color: var(--primary-teal-hover);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.data-feedback-btn:active {
    transform: translateY(0);
}

.site-footer {
    background-color: #FFFFFF;
    border-radius: 0;
    box-shadow: none;
    padding: 52px 0;
    margin: 0; /* Zero margin gap between Get Updates and footer */
    width: 100%;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand-section {
    max-width: 320px;
}

.footer-cgs-logo {
    height: 65px;
    display: block;
    margin-bottom: 24px;
    object-fit: contain;
}

.footer-address {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}

.footer-address strong {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
}

.footer-columns {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 140px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #1E3A8A; /* Bold dark blue accent matching screenshot */
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.footer-nav-list,
.footer-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a,
.footer-social-list a,
.footer-email-link {
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-nav-list a:hover,
.footer-social-list a:hover,
.footer-email-link:hover {
    color: var(--primary-teal);
}

.footer-contact-info {
    margin-bottom: 14px;
}

.footer-social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .site-footer {
        padding: 36px 24px;
        margin: 40px 0 0 0;
    }
    
    .footer-columns {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 36px;
    }
    
    .footer-columns {
        width: 100%;
        justify-content: space-between;
        gap: 24px;
    }
}

/* Report Accordion Styles */
.report-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    width: 100%;
}

.report-accordion-item {
    background-color: #E6EFEF;
    border-radius: 10px;
    overflow: hidden;
    transition: background-color 0.2s ease;
}

.report-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-teal);
    gap: 16px;
}

.report-accordion-header:hover {
    background-color: #DCEDED;
}

.report-accordion-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-teal);
    line-height: 1;
    flex-shrink: 0;
}

.report-accordion-content {
    display: none;
    padding: 0 24px 20px 24px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--secondary-text);
}

.report-accordion-item.open .report-accordion-content {
    display: block;
}

/* Partnership Section (Reports Page) */
.partnership-section {
    background-color: #FFFFFF;
    padding: 40px 0;
    border-top: 1px solid var(--border-color, #E2E8F0);
}

.partnership-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.partnership-text {
    font-size: 16px;
    font-weight: 500;
    color: #4A5568;
}

.partnership-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
}

/* ========================================= */
/* DATA & TOOLS / DATABASE PAGE STYLES       */
/* ========================================= */

/* Title Section */
.db-title-section {
    width: 100%;
    background-color: #e6f0ef;
    padding: 26px 24px 10px 24px;
    box-sizing: border-box;
    text-align: center;
}

.db-title-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.db-page-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-teal, #036760);
    line-height: 1.25;
    letter-spacing: -0.6px;
    margin: 0;
}

/* Map Section: Same #e6f0ef bg colour, starts immediately with 0 gap, map touches bottom */
.db-map-section {
    width: 100%;
    background-color: #e6f0ef;
    padding: 0;
    box-sizing: border-box;
}

/* Map Container: Stretched to align with header logo and search button */
.db-map-container {
    width: 100%;
    max-width: 1368px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 1440px) {
    .db-map-container {
        max-width: 1168px;
    }
}

.map-wrapper-relative {
    position: relative;
}

arcgis-embedded-map {
    display: block;
    width: 100% !important;
    height: 800px;
    margin: 0;
    border-radius: 0;
    border: none;
    overflow: hidden;
    box-sizing: border-box;
}

/* Hide Esri Attribution & Time Zone Widgets */
.esri-view-attribution,
.esri-attribution,
.esri-attribution__sources,
.esri-attribution__powered-by,
arcgis-time-zone,
.esri-time-zone,
.esri-time-zone-label,
[data-node-ref="timeZoneLabel"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Floating Map Legend Widget (Top Left of Map) */
.map-legend-widget {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-family: inherit;
}

.map-legend-btn {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #036760;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    outline: none;
    user-select: none;
    padding: 0;
}

.map-legend-btn:hover {
    background-color: #f8fafc;
    color: #024f4a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.map-legend-btn:active {
    transform: scale(0.96);
}

.map-legend-dropdown {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16), 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    min-width: 175px;
    box-sizing: border-box;
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
    max-height: 250px;
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
}

.map-legend-widget.collapsed .map-legend-dropdown {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
    transform: translateY(-6px);
    pointer-events: none;
    box-shadow: none;
}

.map-legend-widget.collapsed .map-legend-btn {
    color: #64748b;
}

.legend-group-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 8px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.legend-text {
    font-size: 13px;
    color: #334155;
    font-weight: 500;
}

/* About the Database Section: #e6f0ef background */
.about-db-section {
    width: 100%;
    background-color: #e6f0ef;
    padding: 28px 24px 44px 24px;
    box-sizing: border-box;
}

/* About the Database Accordion (White Card on #e6f0ef Background) */
.about-db-accordion {
    background-color: #FFFFFF;
    border: 1px solid rgba(3, 103, 96, 0.12);
    border-radius: 12px;
    margin-bottom: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(3, 103, 96, 0.04);
    transition: all 0.3s ease;
}

/* Database Main Section: Seamless with page matching mockup */
.db-main-section {
    background-color: #FFFFFF;
    padding: 44px 24px 76px 24px;
    width: 100%;
    box-sizing: border-box;
    border-top: none;
}

.db-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-db-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.about-db-title {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.3px;
}

.about-db-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-teal, #036760);
    line-height: 1;
    transition: transform 0.25s ease;
    user-select: none;
}

.about-db-content {
    display: none;
    padding: 0 28px 26px 28px;
    font-size: 15.5px;
    line-height: 1.68;
    color: var(--secondary-text, #414141);
    border-top: 1px solid rgba(3, 103, 96, 0.12);
    margin-top: 4px;
    padding-top: 20px;
}

.about-db-accordion.open .about-db-content {
    display: block;
}

/* Dataset Section Header */
.dataset-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-teal, #036760);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.dataset-download-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 38px;
}

.dataset-download-btn {
    display: inline-block;
    background-color: var(--primary-teal, #036760);
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 38px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(3, 103, 96, 0.25);
}

.dataset-download-btn:hover {
    background-color: var(--primary-teal-hover, #024B46);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(3, 103, 96, 0.35);
}

/* Filter Bar */
.dataset-filter-bar {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-label-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-icon {
    color: var(--primary-teal, #036760);
    font-size: 17px;
}

.filter-label {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
}

.filter-controls-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.filter-dropdown-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color, #CBD5E1);
    border-radius: 30px;
    padding: 9px 38px 9px 22px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23334155' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-dropdown-select:hover,
.filter-dropdown-select:focus {
    outline: none;
    border-color: var(--primary-teal, #036760);
    box-shadow: 0 0 0 3px rgba(3, 103, 96, 0.15);
}

/* Dataset Table (Crisp White Card on Light Teal Background) */
.filter-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #DC2626;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-reset-btn:hover {
    background-color: #FEE2E2;
    border-color: #FCA5A5;
}

.table-meta-right {
    margin-left: auto;
}

.record-count-badge {
    display: inline-block;
    background-color: #FFFFFF;
    color: var(--primary-teal, #036760);
    border: 1px solid rgba(3, 103, 96, 0.25);
    font-weight: 700;
    font-size: 13.5px;
    padding: 7px 18px;
    border-radius: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.dataset-table-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border-color, #CBD5E1);
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    background-color: #FFFFFF;
    margin-bottom: 20px;
}

.dataset-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 1.55;
    text-align: left;
}

.dataset-table th {
    background-color: #F8FAFC;
    color: #0F172A;
    font-weight: 700;
    padding: 15px 18px;
    border: 1px solid #E2E8F0;
    border-bottom: 2px solid #CBD5E1;
    vertical-align: middle;
}

.dataset-table td {
    padding: 16px 18px;
    border: 1px solid #E2E8F0;
    color: #334155;
    vertical-align: top;
}

.dataset-table tr:hover td {
    background-color: #F8FAFC;
}

/* Table Loading Cell */
.table-loading-cell {
    text-align: center;
    padding: 50px 20px !important;
}

.table-spinner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--primary-teal, #036760);
    font-size: 15px;
    font-weight: 600;
}

.table-spinner {
    font-size: 32px;
}

/* Source Cell Styling */
.table-source-title {
    font-weight: 700;
    color: #0F172A;
    line-height: 1.35;
    margin-bottom: 4px;
}

.table-source-link {
    color: var(--primary-teal, #036760);
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    display: inline;
    transition: color 0.15s;
}

.table-source-link:hover {
    color: var(--primary-teal-hover, #024B46);
    text-decoration: underline;
}

.source-ext-icon {
    font-size: 11px;
    margin-left: 3px;
    opacity: 0.8;
}

.source-multi-links {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.table-sub-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-teal, #036760);
    background-color: #E6EFEF;
    padding: 3px 8px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid rgba(3, 103, 96, 0.2);
}

.table-sub-link:hover {
    background-color: #D3E6E5;
    text-decoration: underline;
}

.source-plain-text {
    font-size: 12px;
    color: #64748B;
    margin-top: 4px;
    word-break: break-all;
}

.source-city-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    margin-top: 6px;
}

/* Policy Area Tag */
.policy-area-tag {
    display: inline-block;
    background-color: var(--bg-light-teal, #E6EFEF);
    color: var(--primary-teal, #036760);
    font-weight: 700;
    font-size: 12.5px;
    padding: 4px 10px;
    border-radius: 16px;
    border: 1px solid rgba(3, 103, 96, 0.2);
    line-height: 1.3;
}

/* Table Badge Styles for 6-column Layout */
.table-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1E293B;
}

.table-sector-badge {
    display: inline-block;
    background-color: #F1F5F9;
    color: #334155;
    font-weight: 600;
    font-size: 12.5px;
    padding: 3px 9px;
    border-radius: 6px;
    border: 1px solid #E2E8F0;
    line-height: 1.35;
}

.table-instrument-tag {
    display: inline-block;
    background-color: var(--bg-light-teal, #E6EFEF);
    color: var(--primary-teal, #036760);
    font-weight: 600;
    font-size: 12.5px;
    padding: 3px 9px;
    border-radius: 6px;
    border: 1px solid rgba(3, 103, 96, 0.2);
    line-height: 1.35;
}

.table-year-cell {
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.dataset-bottom-download-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* Pagination Styling */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.pagination-info {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.pagination-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pagination-page-size {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.page-size-select {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color, #CBD5E1);
    border-radius: 6px;
    padding: 6px 12px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    outline: none;
}

.page-size-select:focus {
    border-color: var(--primary-teal, #036760);
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-btn {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color, #CBD5E1);
    border-radius: 6px;
    padding: 6px 13px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    transition: all 0.15s ease;
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled):not(.active) {
    background-color: #F1F5F9;
    border-color: #94A3B8;
}

.pagination-btn.active {
    background-color: var(--primary-teal, #036760);
    border-color: var(--primary-teal, #036760);
    color: #FFFFFF;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-nav-btn {
    padding: 6px 14px;
    gap: 6px;
}

.pagination-ellipsis {
    padding: 0 4px;
    color: #94A3B8;
    font-weight: 700;
    user-select: none;
}

/* Feedback CTA Section: Deep Teal Background */
.feedback-banner-section {
    background-color: var(--primary-teal, #036760);
    padding: 64px 24px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.feedback-banner-container {
    max-width: 900px;
    margin: 0 auto;
}

.feedback-banner-title {
    font-size: 34px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.feedback-banner-btn {
    display: inline-block;
    background-color: #00A896;
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.feedback-banner-btn:hover {
    background-color: #028F80;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .db-title-section {
        padding: 28px 16px 14px 16px;
    }
    .db-title-container {
        margin-bottom: 0;
    }
    .db-page-title {
        font-size: 28px;
    }
    .db-map-section {
        padding: 0;
    }
    arcgis-embedded-map {
        height: 500px;
        margin-bottom: 0;
        border-radius: 0;
    }
    .map-legend-widget {
        top: 10px;
        left: 10px;
    }
    .map-legend-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .map-legend-dropdown {
        padding: 10px 14px;
        min-width: 150px;
    }
    .about-db-section {
        padding: 20px 16px 32px 16px;
    }
    .db-main-section {
        padding: 32px 16px 50px 16px;
    }
    .about-db-title {
        font-size: 20px;
    }
    .about-db-header {
        padding: 16px 20px;
    }
    .dataset-heading {
        font-size: 28px;
    }
    .dataset-filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .table-meta-right {
        margin-left: 0;
    }
    .pagination-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .pagination-right-group {
        width: 100%;
        justify-content: space-between;
    }
    .feedback-banner-title {
        font-size: 26px;
    }
}

