        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-maroon: #7d1538;
            --secondary-maroon: #a91b60;
            --accent-gold: #d4af37;
            --light-gold: #f4e4c1;
            --text-light: #fff;
            --text-dark: #2c2c2c;
            --bg-light: #faf8f5;
            --gradient-primary: linear-gradient(135deg, #7d1538 0, #a91b60 50%, #c42275 100%);
            --gradient-secondary: linear-gradient(135deg, #5d0f28 0, #7d1538 100%);
            --shadow-soft: 0 4px 20px rgba(125, 21, 56, 0.15);
            --shadow-medium: 0 8px 32px rgba(125, 21, 56, 0.2);
            --border-radius: 12px;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--gradient-secondary);
            color: var(--text-light);
            z-index: 2000;
            transition: var(--transition-smooth);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            height: 70px;
        }

        .top-bar.scrolled {
            background: rgba(93, 15, 40, 0.95);
            box-shadow: var(--shadow-soft);
            height: 60px;
        }

        .top-bar-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0.75rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .top-bar.scrolled .top-bar-container {
            padding: 0.5rem 2rem;
        }

        .top-bar-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--accent-gold);
        }

        .top-bar-brand .brand-icon {
            width: 28px;
            height: 28px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-maroon);
            font-weight: 800;
            font-size: 0.9rem;
        }

        .top-bar-brand span {
            transition: var(--transition-smooth);
        }

        .top-bar-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .top-bar-info {
            display: flex;
            gap: 2rem;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-icon {
            width: 16px;
            height: 16px;
            opacity: 0.8;
        }

        .font-size-switcher {
            display: flex;
            gap: 0.25rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.25rem;
            border-radius: 8px;
        }

        .font-size-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            width: 2rem;
            height: 2rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .font-size-btn.active,
        .font-size-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.1);
        }

        /* ========== DESKTOP NAVIGATION ========== */
        .desktop-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(125, 21, 56, 0.1);
            z-index: 1500;
            transition: var(--transition-smooth);
            box-shadow: 0 2px 20px rgba(125, 21, 56, 0.08);
            height: 80px;
        }

        .top-bar.scrolled~.desktop-navigation {
            top: 60px;
        }

        .desktop-nav-container {
            max-width: 1800px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            height: 100%;
            gap: 3rem;
        }

        .nav-logo-section {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-shrink: 0;
        }

        .nav-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-logos a {
            display: inline-block;
            transition: var(--transition-smooth);
            border-radius: 6px;
            padding: 0.25rem;
        }

        .nav-logos a:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: scale(1.05);
        }

        .nav-logos a:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .nav-logo {
            object-fit: contain;
            transition: var(--transition-smooth);
            border-radius: 6px;
            display: block;
        }

        .nav-logos a:hover .nav-logo {
            filter: brightness(1.1) contrast(1.05);
        }

        .nav-logo.icac {
            height: 55px;
        }

        .nav-logo.acta {
            height: 45px;
        }

        .nav-logo.unodc {
            height: 52px;
        }

        .nav-logo.iaaca {
            height: 58px;
        }

        .nav-menu-section {
            flex: 1;
            display: flex;
            justify-content: center;
            margin-left: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            white-space: nowrap;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.75rem 1.25rem;
            border-radius: var(--border-radius);
            transition: var(--transition-smooth);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-width: fit-content;
        }

        .nav-link:hover {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.15);
        }

        .nav-link.has-dropdown::after {
            content: '▾';
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            margin-left: 0.25rem;
            flex-shrink: 0;
        }

        .nav-item:hover .nav-link.has-dropdown::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            margin-top: 0.5rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0) scale(1);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: white;
            transform: translateX(-50%) rotate(45deg);
            border-left: 1px solid rgba(212, 175, 55, 0.2);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition-smooth);
            font-weight: 500;
            border-bottom: 1px solid rgba(125, 21, 56, 0.06);
            position: relative;
            white-space: nowrap;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: var(--light-gold);
            color: var(--primary-maroon);
            padding-left: 2rem;
        }

        .dropdown-item:hover::before {
            content: '→';
            position: absolute;
            left: 1rem;
            color: var(--accent-gold);
            font-weight: bold;
        }

        /* ========== MOBILE NAVIGATION ========== */
        .mobile-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 3px solid var(--accent-gold);
            z-index: 1500;
            display: none;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-soft);
            height: 65px;
        }

        .top-bar.scrolled~.mobile-navigation {
            top: 60px;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1.5rem;
            height: 100%;
        }

        .mobile-brand-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mobile-brand-text {
            font-size: 1.2rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .mobile-menu-btn {
            position: relative;
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid var(--primary-maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.2);
            z-index: 1600;
        }

        .mobile-menu-btn:hover {
            background: var(--light-gold);
            border-color: var(--secondary-maroon);
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(125, 21, 56, 0.3);
        }

        .mobile-menu-btn.active {
            background: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }

        .hamburger-lines {
            position: relative;
            width: 24px;
            height: 18px;
        }

        .hamburger-lines span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-maroon);
            border-radius: 2px;
            transition: var(--transition-smooth);
            transform-origin: center;
        }

        .hamburger-lines span:nth-child(1) {
            top: 0;
        }

        .hamburger-lines span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-lines span:nth-child(3) {
            bottom: 0;
        }

        .mobile-menu-btn.active .hamburger-lines span {
            background: var(--accent-gold);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(2) {
            opacity: 0;
            transform: translateY(-50%) scale(0);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        .mobile-fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--gradient-primary);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(0.95);
        }

        .mobile-fullscreen-menu.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .mobile-menu-content {
            text-align: center;
            width: 90%;
            max-width: 350px;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            color: var(--accent-gold);
            font-size: 1.2rem;
            font-weight: bold;
            z-index: 1560;
        }

        .mobile-menu-close:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            transform: scale(1.1);
        }

        .mobile-menu-title {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-item {
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-nav-link {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 0.5rem;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .mobile-nav-link.has-submenu {
            position: relative;
        }

        .mobile-nav-link.has-submenu::after {
            content: '▾';
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .mobile-nav-link.has-submenu.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 0.3rem;
        }

        .mobile-submenu.active {
            max-height: 250px;
        }

        .mobile-submenu-item {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            padding: 0.6rem 1.5rem;
            margin-left: 1rem;
            border-left: 2px solid var(--accent-gold);
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 8px 8px 0;
            margin-bottom: 0.3rem;
        }

        .mobile-submenu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding-left: 2rem;
        }

        .mobile-menu-footer {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .mobile-menu-footer .conference-info {
            margin-bottom: 0.3rem;
        }

        .mobile-menu-footer .conference-date {
            color: var(--accent-gold);
            font-weight: 500;
        }

        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* ========== CONTENT SECTIONS ========== */
        .hero-section {
            margin-top: 150px;
        }

        .section-tag {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            background: var(--light-gold);
            color: var(--primary-maroon);
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
            transition: transform 0.3s ease;
        }

        .section-tag:hover {
            transform: translateY(-1px);
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
            line-height: 1.3;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

   

        .about-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(250, 248, 245, 0.93) 60%, rgba(244, 228, 193, 0.55) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.93);
            border-radius: 24px;
            box-shadow: 0 7px 32px rgba(125, 21, 56, 0.07);
            padding: 3rem 2rem;
        }

        .about-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .about-main-text {
            font-size: 1.1rem;
            color: #444;
            line-height: 1.7;
            margin: 0 auto;
            max-width: 800px;
            text-align: justify;
        }

        .about-main-text p {
            margin-bottom: 1.2rem;
        }

        .video-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
            position: relative;
            z-index: 1;
        }

        .video-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .video-embed {
            position: relative;
            width: 100%;
            max-width: 960px;
            height: 0;
            padding-bottom: 54%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(125, 21, 56, 0.1);
            border: 3px solid var(--accent-gold);
        }

        .video-embed iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Countdown Section */
        .countdown-section {
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            padding: 0;
            background: linear-gradient(90deg, #f4e4c1 0, #faf8f5 100%);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .countdown-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 32px 0;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .countdown-box {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 22px;
            box-shadow: 0 8px 32px rgba(125, 21, 56, 0.11);
            border: 1.5px solid #f4e4c1;
            padding: 30px 56px 22px 56px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 340px;
            animation: fadeInUp 1s cubic-bezier(.32, 1.3, .36, 1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .countdown-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #7d1538;
            letter-spacing: 0.01em;
            display: flex;
            align-items: center;
            margin-bottom: 24px;
            text-align: center;
        }

        .countdown-timer {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 0.8em;
            margin-bottom: 18px;
        }

        .cd-segment {
            background: linear-gradient(135deg, #fff7e2 70%, #f4e4c1 100%);
            border-radius: 16px;
            min-width: 65px;
            min-height: 66px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 14px rgba(212, 175, 55, 0.09);
            margin: 0 .12em;
            border: 1.5px solid #efd67f;
            transition: background 0.25s;
        }

        .cd-num {
            font-size: 2.4em;
            font-weight: 700;
            color: #a91b60;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.12);
            font-variant-numeric: tabular-nums;
            letter-spacing: 0.03em;
            line-height: 1.0;
            margin-bottom: 0.14em;
            transition: color 0.3s;
        }

        .cd-label {
            font-size: .92em;
            color: #7d1538;
            font-weight: 500;
            letter-spacing: 0.03em;
            opacity: 0.82;
            margin-top: -6px;
            line-height: 1.2;
        }

        .cd-colon {
            color: #d4af37;
            font-size: 2.3em;
            font-weight: 700;
            opacity: 0.8;
            user-select: none;
            margin: 0 0.10em;
        }

        .countdown-caption {
            margin-top: 0.7em;
            font-size: 1.04em;
            color: #a91b60;
            font-weight: 500;
            letter-spacing: 0.04em;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        /* Carousel */
        .carousel-section {
            width: 100vw;
            max-width: none;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            padding: 28px 0;
            background: #faf8f5;
            box-shadow: 0 12px 40px rgba(125, 21, 56, 0.06);
            border: 1px solid rgba(212, 175, 55, 0.14);
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            background: #fff;
            border-radius: 12px;
            max-width: 100%;
            margin: 0 auto;
        }

        .carousel-track {
            display: flex;
            transition: transform 450ms cubic-bezier(.22, .9, .35, 1);
            will-change: transform;
        }

        .carousel-slide {
            flex: 0 0 100%;
            box-sizing: border-box;
            padding: 10px;
            user-select: none;
        }

        .carousel-slide img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            border-radius: 10px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            background: #efefef;
        }

        /* ========== LOGISTICAL NOTE SECTION ========== */
        .logistics-download-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(125, 21, 56, 0.1);
        }

        .logistics-preview-box {
            position: relative;
            width: 100%;
            max-width: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .pdf-thumbnail {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
            margin-bottom: 1rem;
            border: none;
        }



        .pdf-thumbnail img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }

        .btn-shadow-striped {
            position: relative;
            background: #f9fafa;
            padding: 10px 16px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: all 300ms ease-in-out;
            left: 0;
            top: 0;
            width: 100%;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            border-radius: 8px;
        }

        .btn-shadow-striped .btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .btn-shadow-striped .btn-icon svg {
            width: 16px;
            height: 16px;
        }

        .btn-shadow-striped:hover .btn-icon {
            transform: translateY(2px);
        }

        .btn-shadow-striped:hover {
            left: 4px;
            top: 4px;
            box-shadow: 0 0 0 0 white;
            text-decoration: none;
        }

        .btn-shadow-striped--gold {
            border: 2px solid #d4af37;
            color: #7d1538;
            background: linear-gradient(145deg, #fef9e7 0%, #f9f3dc 100%);
            box-shadow: 4px 4px 0px 0px #d4af37;
        }

        .btn-shadow-striped--gold:hover {
            color: #7d1538;
            border-color: #c9a532;
        }

        .logistics-text-box {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            justify-content: center;
            align-items: flex-start;
            padding-left: 1rem;
        }

        .logistics-text-box h4 {
            color: var(--primary-maroon);
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.3;
        }

        .logistics-description {
            color: #666;
            font-size: 0.95rem;
            margin: 0;
            font-style: italic;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: #fff;
            padding: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            min-width: 0;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }

        .footer-section h4 {
            margin-bottom: 1.2rem;
            color: var(--light-gold);
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* Floating Enrollment Button */
        .floating-enroll-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            background: linear-gradient(135deg, #ff4757, #ff3742);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 18px 28px;
            font-size: 17px;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(255, 71, 87, 0.5);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: pulse-glow 3s infinite, float-gentle 6s ease-in-out infinite;
            min-width: 200px;
            justify-content: center;
            border: 3px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .floating-enroll-btn::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(135deg, #ffd700, #ff4757, #ffd700);
            border-radius: 50px;
            z-index: -1;
            opacity: 0.7;
            animation: glow-pulse 2s ease-in-out infinite alternate;
        }

        .floating-enroll-btn:hover {
            transform: translateY(-5px) scale(1.08);
            box-shadow: 0 15px 40px rgba(255, 71, 87, 0.7);
            background: linear-gradient(135deg, #ff3742, #ff2d3a);
            text-decoration: none;
            color: white;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .floating-enroll-btn:active {
            transform: translateY(-2px) scale(1.05);
        }

        .floating-enroll-btn .btn-text {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            letter-spacing: 1.2px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        @keyframes pulse-glow {
            0% {
                box-shadow: 0 10px 30px rgba(255, 71, 87, 0.5), 0 0 0 0 rgba(255, 71, 87, 0.8);
            }

            50% {
                box-shadow: 0 10px 30px rgba(255, 71, 87, 0.5), 0 0 0 20px rgba(255, 71, 87, 0);
            }

            100% {
                box-shadow: 0 10px 30px rgba(255, 71, 87, 0.5), 0 0 0 0 rgba(255, 71, 87, 0);
            }
        }

        @keyframes float-gentle {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes glow-pulse {
            0% {
                opacity: 0.5;
                transform: scale(1);
            }

            100% {
                opacity: 0.8;
                transform: scale(1.02);
            }
        }

        /* ========== RESPONSIVE BREAKPOINTS ========== */
        @media (min-width: 600px) {
            .carousel-slide {
                flex: 0 0 50%;
            }

            .carousel-slide img {
                height: 260px;
            }
        }

        @media (min-width: 900px) {
            .carousel-slide {
                flex: 0 0 33.3333%;
            }

            .carousel-slide img {
                height: 300px;
            }

            .countdown-box {
                padding: 18px 10vw 16px 10vw;
                min-width: 0;
            }
        }

        @media (min-width: 1025px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .hero-section {
                margin-top: calc(70px + 2 * 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 80px);
            }
        }

        @media (min-width: 1200px) {
            .carousel-slide {
                flex: 0 0 25%;
            }

            .carousel-slide img {
                height: 340px;
            }

            .nav-logos {
                gap: 1.8rem;
            }

            .nav-logo.icac {
                height: 50px;
            }

            .nav-logo.acta {
                height: 38px;
            }

            .nav-logo.unodc {
                height: 47px;
            }

            .nav-logo.iaaca {
                height: 53px;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .nav-link {
                padding: 0.75rem 1rem;
                font-size: 0.95rem;
            }
        }

        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .hero-section {
                margin-top: 150px;
            }

            .top-bar.scrolled~.hero-section {
                margin-top: 140px;
            }
        }

        @media (max-width: 1024px) {
            .desktop-navigation {
                display: none !important;
            }

            .mobile-navigation {
                display: block;
            }

            .hero-section {
                margin-top: 135px;
            }

            .top-bar-info {
                display: none;
            }

            .top-bar-brand {
                font-size: 1rem;
            }

            .top-bar-brand span {
                display: none;
            }

            .video-embed {
                max-width: 98vw;
                padding-bottom: 60%;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                height: 60px;
            }

            .top-bar.scrolled {
                height: 50px;
            }

            .mobile-navigation {
                top: 60px;
                height: 60px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 50px;
            }

            .hero-section {
                margin-top: 120px;
            }

            .mobile-nav-header {
                padding: 0.5rem 1.25rem;
            }

            .mobile-menu-title {
                font-size: 1.8rem;
                margin-bottom: 1.8rem;
            }

            .mobile-nav-link {
                font-size: 1.3rem;
                padding: 0.7rem 1.3rem;
            }

            .mobile-menu-close {
                top: 1.2rem;
                right: 1.2rem;
                width: 42px;
                height: 42px;
            }

            .section-title {
                font-size: 1.8rem;
                line-height: 1.4;
            }

            .section-tag {
                font-size: 0.8rem;
                padding: 0.35rem 1rem;
                margin-bottom: 0.8rem;
            }

            .about-content {
                padding: 2rem 1.5rem;
                margin: 0 1rem;
            }

            .about-main-text {
                font-size: 1rem;
                text-align: left;
                line-height: 1.6;
            }

            .about-header {
                margin-bottom: 2rem;
            }

            .video-container {
                padding: 0 0.5rem 2rem;
            }

            .video-embed {
                max-width: 100vw;
                padding-bottom: 65%;
            }

            .logistics-download-section {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .logistics-preview-box {
                width: 100%;
                max-width: 200px;
                margin: 0 auto;
            }

            .logistics-text-box {
                align-items: center;
                padding-left: 0;
                text-align: center;
            }

            .logistics-text-box h4 {
                font-size: 1.4rem;
                text-align: center;
            }

            .logistics-description {
                text-align: center;
            }

            .btn-shadow-striped {
                font-size: 0.7rem;
                padding: 9px 14px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1.5rem;
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
            }

            .footer-bottom {
                padding: 1.5rem;
                gap: 1.2rem;
            }

            .footer-bottom p {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            .footer-bottom img {
                width: 80px;
                height: 32px;
            }
        }

        @media (max-width: 600px) {

            .countdown-section,
            .countdown-container {
                padding: 0;
                margin: 0;
            }

            .countdown-box {
                padding: 14px 2vw 10px 2vw;
                min-width: 0;
                border-radius: 15px;
            }

            .countdown-title {
                font-size: 1.17rem;
                margin-bottom: 13px;
            }

            .cd-segment {
                min-width: 41px;
                min-height: 38px;
                border-radius: 10px;
            }

            .cd-num {
                font-size: 1.22em;
            }

            .cd-label {
                font-size: 0.65em;
                margin-top: -3px;
            }

            .cd-colon {
                font-size: 1.4em;
            }

            .countdown-caption {
                font-size: .93em;
                margin-top: .5em;
            }

            .countdown-timer {
                gap: 0.32em;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                height: 55px;
            }

            .top-bar.scrolled {
                height: 45px;
            }

            .mobile-navigation {
                top: 55px;
                height: 55px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 45px;
            }

            .hero-section {
                margin-top: 110px;
            }

            .mobile-brand-text {
                font-size: 1rem;
            }

            .mobile-menu-btn {
                width: 45px;
                height: 45px;
            }

            .mobile-menu-title {
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
            }

            .mobile-nav-link {
                font-size: 1.2rem;
                padding: 0.6rem 1.1rem;
            }

            .mobile-menu-close {
                top: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .top-bar-container {
                padding: 0.5rem 1rem;
            }

            .section-title {
                font-size: 1.6rem;
                margin-bottom: 0.8rem;
            }

            .section-tag {
                font-size: 0.75rem;
                padding: 0.3rem 0.8rem;
            }

            .about-content {
                padding: 1.5rem 1rem;
                margin: 0 0.5rem;
            }

            .about-main-text {
                font-size: 0.95rem;
            }

            .about-main-text p {
                margin-bottom: 1rem;
            }

            .video-embed {
                max-width: 100vw;
                padding-bottom: 75%;
                border-radius: 10px;
            }

            .carousel-slide img {
                height: 180px;
            }

            .carousel-section {
                padding: 18px;
                margin: 18px 12px;
            }

            .logistics-download-section {
                padding-top: 1.5rem;
                margin-top: 2rem;
                gap: 1.5rem;
            }

            .logistics-preview-box {
                max-width: 160px;
            }

            .logistics-text-box h4 {
                font-size: 1.2rem;
                text-align: center;
            }

            .logistics-description {
                font-size: 0.9rem;
                text-align: center;
            }

            .btn-shadow-striped {
                font-size: 0.65rem;
                padding: 8px 12px;
                letter-spacing: 0.5px;
            }

            .btn-shadow-striped .btn-icon svg {
                width: 14px;
                height: 14px;
            }

            .footer-content {
                padding: 0 0.3rem;
                gap: 0.6rem;
                margin-bottom: 0.4rem;
            }

            .footer-section h4 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                font-size: 0.88rem;
            }

            .footer-bottom {
                padding: 1.2rem 1rem;
                gap: 1rem;
            }

            .footer-bottom p {
                font-size: 0.8rem;
            }

            .footer-bottom img {
                width: 70px;
                height: 28px;
            }
        }

        @media (max-width: 360px) {
            .top-bar-container {
                padding: 0.5rem 0.75rem;
            }

            .top-bar-brand {
                gap: 0.5rem;
            }

            .top-bar-brand .brand-icon {
                width: 24px;
                height: 24px;
                font-size: 0.8rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .logistics-preview-box {
                max-width: 140px;
            }

            .logistics-text-box h4 {
                font-size: 1.1rem;
                text-align: center;
            }

            .logistics-description {
                font-size: 0.85rem;
                text-align: center;
            }

            .btn-shadow-striped {
                font-size: 0.6rem;
                padding: 7px 10px;
                gap: 0.3rem;
            }

            .btn-shadow-striped .btn-icon svg {
                width: 12px;
                height: 12px;
            }
        }

        /* ========== LOGISTICAL NOTE SECTION ========== */
        .logistics-download-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(125, 21, 56, 0.1);
        }

        .logistics-preview-box {
            position: relative;
            width: 100%;
            max-width: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .pdf-thumbnail {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
            margin-bottom: 1rem;
            border: none;
        }



        .pdf-thumbnail img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }

        .btn-shadow-striped {
            position: relative;
            background: #f9fafa;
            padding: 10px 16px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: all 300ms ease-in-out;
            left: 0;
            top: 0;
            width: 100%;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            border-radius: 8px;
        }

        .btn-shadow-striped .btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .btn-shadow-striped .btn-icon svg {
            width: 16px;
            height: 16px;
        }

        .btn-shadow-striped:hover .btn-icon {
            transform: translateY(2px);
        }

        .btn-shadow-striped:hover {
            left: 4px;
            top: 4px;
            box-shadow: 0 0 0 0 white;
            text-decoration: none;
        }

        .btn-shadow-striped--gold {
            border: 2px solid #d4af37;
            color: #7d1538;
            background: linear-gradient(145deg, #fef9e7 0%, #f9f3dc 100%);
            box-shadow: 4px 4px 0px 0px #d4af37;
        }

        .btn-shadow-striped--gold:hover {
            color: #7d1538;
            border-color: #c9a532;
        }

        .logistics-text-box {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            justify-content: center;
            align-items: flex-start;
            padding-left: 1rem;
        }

        .logistics-text-box h4 {
            color: var(--primary-maroon);
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.3;
        }

        .logistics-description {
            color: #666;
            font-size: 0.95rem;
            margin: 0;
            font-style: italic;
        }

        /* Tablet and Mobile Responsive */
        @media (max-width: 768px) {
            .logistics-download-section {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .logistics-preview-box {
                width: 100%;
                max-width: 180px;
                margin: 0 auto;
            }

            .logistics-text-box {
                align-items: center;
                padding-left: 0;
                text-align: center;
            }

            .logistics-text-box h4 {
                font-size: 1.4rem;
                text-align: center;
            }

            .logistics-description {
                text-align: center;
            }

            .btn-shadow-striped {
                font-size: 0.7rem;
                padding: 9px 14px;
            }
        }

        @media (max-width: 480px) {
            .logistics-download-section {
                padding-top: 1.5rem;
                margin-top: 2rem;
                gap: 1.5rem;
            }

            .logistics-preview-box {
                max-width: 150px;
            }

            .logistics-text-box h4 {
                font-size: 1.2rem;
                text-align: center;
            }

            .logistics-description {
                font-size: 0.9rem;
                text-align: center;
            }

            .btn-shadow-striped {
                font-size: 0.65rem;
                padding: 8px 12px;
                letter-spacing: 0.5px;
            }

            .btn-shadow-striped .btn-icon svg {
                width: 14px;
                height: 14px;
            }
        }

        @media (max-width: 360px) {
            .logistics-preview-box {
                max-width: 130px;
            }

            .logistics-text-box h4 {
                font-size: 1.1rem;
                text-align: center;
            }

            .logistics-description {
                font-size: 0.85rem;
                text-align: center;
            }

            .btn-shadow-striped {
                font-size: 0.6rem;
                padding: 7px 10px;
                gap: 0.3rem;
            }

            .btn-shadow-striped .btn-icon svg {
                width: 12px;
                height: 12px;
            }
        }

        .mobile-submenu.active {
            max-height: 400px;
            /* Increased to accommodate 5 items */
        }

                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --primary-maroon: #7d1538;
            --secondary-maroon: #a91b60;
            --accent-gold: #d4af37;
            --light-gold: #f4e4c1;
            --text-light: #fff;
            --text-dark: #2c2c2c;
            --bg-light: #faf8f5;
            --gradient-primary: linear-gradient(135deg, #7d1538 0, #a91b60 50%, #c42275 100%);
            --gradient-secondary: linear-gradient(135deg, #5d0f28 0, #7d1538 100%);
            --shadow-soft: 0 4px 20px rgba(125, 21, 56, 0.15);
            --shadow-medium: 0 8px 32px rgba(125, 21, 56, 0.2);
            --border-radius: 12px;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--gradient-secondary);
            color: var(--text-light);
            z-index: 2000;
            transition: var(--transition-smooth);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            height: 70px;
        }

        .top-bar.scrolled {
            background: rgba(93, 15, 40, 0.95);
            box-shadow: var(--shadow-soft);
            height: 60px;
        }

        .top-bar-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0.75rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .top-bar.scrolled .top-bar-container {
            padding: 0.5rem 2rem;
        }

        .top-bar-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--accent-gold);
        }

        .top-bar-brand span {
            transition: var(--transition-smooth);
        }

        .top-bar-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .top-bar-info {
            display: flex;
            gap: 2rem;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-icon {
            width: 16px;
            height: 16px;
            opacity: 0.8;
        }

        /* Font Size Controls */
        .font-size-switcher {
            display: flex;
            gap: 0.25rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.25rem;
            border-radius: 8px;
        }

        .font-size-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            width: 2rem;
            height: 2rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .font-size-btn.active,
        .font-size-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.1);
        }

        /* ========== DESKTOP NAVIGATION ========== */
        .desktop-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(125, 21, 56, 0.1);
            z-index: 1500;
            transition: var(--transition-smooth);
            box-shadow: 0 2px 20px rgba(125, 21, 56, 0.08);
            height: 80px;
        }

        .top-bar.scrolled~.desktop-navigation {
            top: 60px;
        }

        .desktop-nav-container {
            max-width: 1800px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            height: 100%;
            gap: 3rem;
        }

        /* Logo Section */
        .nav-logo-section {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-shrink: 0;
        }

        .nav-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-logos a {
            display: inline-block;
            transition: var(--transition-smooth);
            border-radius: 6px;
            padding: 0.25rem;
        }

        .nav-logos a:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: scale(1.05);
        }

        .nav-logos a:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .nav-logo {
            object-fit: contain;
            transition: var(--transition-smooth);
            border-radius: 6px;
            display: block;
        }

        .nav-logos a:hover .nav-logo {
            filter: brightness(1.1) contrast(1.05);
        }

        /* Logo Heights */
        .nav-logo.icac {
            height: 55px;
        }

        .nav-logo.acta {
            height: 45px;
        }

        .nav-logo.unodc {
            height: 52px;
        }

        .nav-logo.iaaca {
            height: 58px;
        }

        /* Navigation Menu */
        .nav-menu-section {
            flex: 1;
            display: flex;
            justify-content: center;
            margin-left: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            white-space: nowrap;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.75rem 1.25rem;
            border-radius: var(--border-radius);
            transition: var(--transition-smooth);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-width: fit-content;
        }

        .nav-link:hover {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.15);
        }

        .nav-link.has-dropdown::after {
            content: '▾';
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            margin-left: 0.25rem;
            flex-shrink: 0;
        }

        .nav-item:hover .nav-link.has-dropdown::after {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            margin-top: 0.5rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0) scale(1);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: white;
            transform: translateX(-50%) rotate(45deg);
            border-left: 1px solid rgba(212, 175, 55, 0.2);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition-smooth);
            font-weight: 500;
            border-bottom: 1px solid rgba(125, 21, 56, 0.06);
            position: relative;
            white-space: nowrap;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: var(--light-gold);
            color: var(--primary-maroon);
            padding-left: 2rem;
        }

        .dropdown-item:hover::before {
            content: '→';
            position: absolute;
            left: 1rem;
            color: var(--accent-gold);
            font-weight: bold;
        }

        /* ========== MOBILE NAVIGATION ========== */
        .mobile-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 3px solid var(--accent-gold);
            z-index: 1500;
            display: none;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-soft);
            height: 65px;
        }

        .top-bar.scrolled~.mobile-navigation {
            top: 60px;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1.5rem;
            height: 100%;
        }

        .mobile-brand-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mobile-brand-text {
            font-size: 1.2rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Modern Hamburger Menu */
        .mobile-menu-btn {
            position: relative;
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid var(--primary-maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.2);
            z-index: 1600;
        }

        .mobile-menu-btn:hover {
            background: var(--light-gold);
            border-color: var(--secondary-maroon);
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(125, 21, 56, 0.3);
        }

        .mobile-menu-btn.active {
            background: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }

        .hamburger-lines {
            position: relative;
            width: 24px;
            height: 18px;
        }

        .hamburger-lines span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-maroon);
            border-radius: 2px;
            transition: var(--transition-smooth);
            transform-origin: center;
        }

        .hamburger-lines span:nth-child(1) {
            top: 0;
        }

        .hamburger-lines span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-lines span:nth-child(3) {
            bottom: 0;
        }

        .mobile-menu-btn.active .hamburger-lines span {
            background: var(--accent-gold);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(2) {
            opacity: 0;
            transform: translateY(-50%) scale(0);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Full Screen Mobile Menu */
        .mobile-fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--gradient-primary);
            z-index: 1550;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(0.95);
            z-index: 9999;
        }

        .mobile-fullscreen-menu.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .mobile-menu-content {
            text-align: center;
            width: 90%;
            max-width: 350px;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            color: var(--accent-gold);
            font-size: 1.2rem;
            font-weight: bold;
            z-index: 1560;
        }

        .mobile-menu-close:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            transform: scale(1.1);
        }

        .mobile-menu-title {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-item {
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-nav-link {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 0.5rem;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .mobile-nav-link.has-submenu {
            position: relative;
        }

        .mobile-nav-link.has-submenu::after {
            content: '▾';
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .mobile-nav-link.has-submenu.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* Mobile Submenu */
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 0.3rem;
        }

        .mobile-submenu.active {
            max-height: 250px;
        }

        .mobile-submenu-item {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            padding: 0.6rem 1.5rem;
            margin-left: 1rem;
            border-left: 2px solid var(--accent-gold);
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 8px 8px 0;
            margin-bottom: 0.3rem;
        }

        .mobile-submenu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding-left: 2rem;
        }

        /* Mobile Menu Footer */
        .mobile-menu-footer {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .mobile-menu-footer .conference-info {
            margin-bottom: 0.3rem;
        }

        .mobile-menu-footer .conference-date {
            color: var(--accent-gold);
            font-weight: 500;
        }

        /* Body lock when mobile menu is open */
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* ========== HERO SECTION - THIN VERSION ========== */
        .hero-section {
            margin-top: 150px;
            background: var(--gradient-primary);
            color: #fff;
            padding: 40px 0 30px;
            position: relative;
            text-align: center;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 500;
        }

        .breadcrumb a {
            color: #fff;
            text-decoration: none;
            opacity: .8;
            transition: opacity 0.3s ease;
        }

        .breadcrumb a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .hero-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-bottom: 0.1em;
        }

        /* Section Styling */
        .section-tag {
            display: inline-block;
            padding: .5rem 1.5rem;
            background: var(--light-gold);
            color: var(--primary-maroon);
            border-radius: 30px;
            font-size: .875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        /* ========== PROGRAMME SECTION ========== */
        .programme {

            position: relative;
            overflow: hidden;
            margin-top: 150px;
            padding: 60px 0;
        }

        .programme-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 4rem;
            padding: 0 2rem;
        }

        .programme-schedule {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-top: 3rem;
        }

        .schedule-header {
            background: var(--gradient-primary);
            color: #fff;
            padding: 2.5rem;
            text-align: center;
            position: relative;
        }

        .schedule-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .schedule-subtitle {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 1.5rem;
            font-style: italic;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        .schedule-date {
            font-size: 1.2rem;
            opacity: 1;
            position: relative;
            z-index: 1;
            font-weight: 600;
            color: var(--accent-gold);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .venue-info {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 0.75rem;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        /* Speaker Link Styles */
        .speaker-link {
            color: var(--primary-maroon);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            border-bottom: 1px solid transparent;
        }

        .speaker-link:hover {
            color: var(--secondary-maroon);
            text-decoration: none;
            border-bottom-color: var(--accent-gold);
            transform: translateY(-1px);
        }

        .speaker-link:visited {
            color: var(--primary-maroon);
        }

        .speaker-link:active {
            color: var(--secondary-maroon);
        }

        /* Enhanced styling for moderator links */
        .moderator-text .speaker-link {
            color: var(--primary-maroon);
            font-weight: 700;
            text-decoration: underline;
            text-decoration-color: var(--accent-gold);
            text-underline-offset: 3px;
        }

        .moderator-text .speaker-link:hover {
            color: var(--secondary-maroon);
            text-decoration-color: var(--secondary-maroon);
            transform: none;
        }

        .panelist-item {
            text-align: justify;
        }


        /* Panel speaker links */
        .panelist-item .speaker-link {
            color: var(--primary-maroon);
            font-weight: 700;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }

        .panelist-item .speaker-link:hover {
            color: var(--secondary-maroon);
            border-bottom-color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.1);
            padding: 0 4px;
            border-radius: 4px;
        }

        /* Opening ceremony speaker links */
        .speaker-item .speaker-link {
            color: var(--primary-maroon);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dotted var(--accent-gold);
            transition: all 0.3s ease;
        }

        .speaker-item .speaker-link:hover {
            color: var(--secondary-maroon);
            border-bottom-style: solid;
            background: rgba(212, 175, 55, 0.05);
            padding: 2px 4px;
            border-radius: 3px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .speaker-link {
                font-size: 0.95rem;
            }

            .panelist-item .speaker-link:hover {
                padding: 0 2px;
            }

            .speaker-item .speaker-link:hover {
                padding: 1px 2px;
            }
        }

        .programme-timeline {
            padding: 3rem 2rem;
        }

        /* ========== TIMELINE ITEMS - ALWAYS ENHANCED ========== */
        .timeline-item {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
            padding: 2rem;
            border-bottom: 1px solid rgba(125, 21, 56, 0.08);
            position: relative;
            transition: all 0.4s ease;
            border-radius: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #fffcf0 20%, #fef9e7 40%, #fff8e1 60%, #fffcf0 80%, #ffffff 100%);
            box-shadow: 0 15px 40px rgba(125, 21, 56, 0.1);
            border: 2px solid var(--accent-gold);
            transform: translateY(-5px);
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            background-image:
                radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(125, 21, 56, 0.01) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(125, 21, 56, 0.01) 50%, rgba(212, 175, 55, 0.02) 100%);
            opacity: 1;
            pointer-events: none;
            z-index: -1;
        }

        .timeline-time {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            width: 120px;
            font-weight: 800;
            color: var(--primary-maroon);
            font-size: 1.1rem;
            padding: 1rem;
            background: linear-gradient(135deg, var(--light-gold) 0%, rgba(212, 175, 55, 0.1) 100%);
            border-radius: 16px;
            text-align: center;
            border: 2px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
            height: fit-content;
        }

        .timeline-time::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg) translate(50%, 50%);
            opacity: 0.7;
        }

        .timeline-content {
            position: relative;
            z-index: 1;
            flex-grow: 1;
        }

        .timeline-event {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            position: relative;
            display: inline-block;
        }

        .timeline-event::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-maroon), var(--accent-gold));
            border-radius: 2px;
        }

        /* Speaker List Styles */
        .speaker-list {
            margin-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .speaker-item {
            background: #fff;
            padding: 1rem 1.25rem;
            border-radius: 8px;
            border-left: 3px solid var(--accent-gold);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
        }

        /* .speaker-item:hover {
            box-shadow: 0 2px 8px rgba(125, 21, 56, 0.1);
            transform: translateX(4px);
        } */

        .speaker-name {
            font-weight: 600;
            color: var(--primary-maroon);
            display: block;
            margin-bottom: 0.25rem;
            font-size: 1rem;
        }

        .speaker-title {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.4;
        }

        .speaker-item.tbc {
            border-left-color: #ccc;
            background: #f9f9f9;
        }

        .speaker-item.tbc .speaker-name {
            color: #888;
            font-style: italic;
        }

        .break-item {
            background: linear-gradient(135deg, #f8fafe 0%, #fff 100%);
            padding: 1.5rem 2.5rem;
            margin: 2rem 0;
            border-radius: 20px;
            text-align: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--secondary-maroon);
            border: 2px dashed rgba(125, 21, 56, 0.2);
            transition: all 0.3s ease;
        }

        /* .break-item:hover {
            transform: scale(1.02);
            border-color: rgba(125, 21, 56, 0.4);
            background: linear-gradient(135deg, #f0f6ff 0%, #fff 100%);
        } */

        .photo-session {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #e6c347 100%);
            color: var(--primary-maroon);
            padding: 1.5rem 2.5rem;
            border-radius: 20px;
            text-align: center;
            font-weight: 800;
            font-size: 1.1rem;
            margin: 2rem 0;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
            border: 2px solid rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
        }

        .photo-session:hover {
            transform: scale(1.02) translateY(-2px);
            box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
            border-color: rgba(212, 175, 55, 0.5);
        }

        /* Collapsible Sessions */
        .session-container {
            background: #fff;
            border-radius: 16px;
            margin: 2rem 0;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.08);
            border: 1px solid rgba(125, 21, 56, 0.1);
            transition: all 0.3s ease;
        }

        .session-container:hover {
            box-shadow: 0 8px 30px rgba(125, 21, 56, 0.15);
            transform: translateY(-2px);
        }

        .session-toggle {
            width: 100%;
            background: var(--gradient-primary);
            color: #fff;
            border: none;
            padding: 2.5rem;
            text-align: left;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .session-toggle::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .session-toggle:hover::before {
            left: 100%;
        }

        .session-toggle:hover {
            background: linear-gradient(135deg, var(--secondary-maroon) 0%, #c42275 100%);
        }

        .session-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .session-number {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 600;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .session-theme {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 500;
            line-height: 1.4;
        }

        .session-expand-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            opacity: 0.9;
        }

        .session-toggle.expanded .session-expand-icon {
            transform: rotate(180deg);
        }

        .session-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.3s ease;
            background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
        }

        .session-content.expanded {
            max-height: 2000px;
            padding: 2rem;
        }

        .session-time-badge {
            position: relative;
            z-index: 1;
            display: inline-block;
            width: auto;
            min-width: 120px;
            font-weight: 800;
            color: var(--primary-maroon);
            font-size: 1.1rem;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, var(--light-gold) 0%, rgba(212, 175, 55, 0.1) 100%);
            border-radius: 16px;
            text-align: center;
            border: 2px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        /* Add the same enhanced styling effects as timeline-time */
        .session-time-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg) translate(50%, 50%);
            opacity: 0.7;
        }

        /* Ensure text stays above the effect */
        .session-time-badge {
            position: relative;
        }

        @media (max-width: 768px) {
            .session-time-badge {
                font-size: 1rem;
                padding: 0.875rem 1.25rem;
                min-width: 100px;
            }
        }

        @media (max-width: 480px) {
            .session-time-badge {
                font-size: 0.95rem;
                padding: 0.75rem 1rem;
                min-width: 90px;
            }
        }

        .session-timeline {
            position: relative;
        }

        .session-timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--accent-gold), var(--primary-maroon));
        }

        .session-timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 60px;
        }

        .session-timeline-item::before {
            content: '';
            position: absolute;
            left: 11px;
            top: 8px;
            width: 18px;
            height: 18px;
            background: var(--accent-gold);
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 2px 8px rgba(125, 21, 56, 0.2);
        }

        .moderator-container {
            background: var(--light-gold);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            margin-bottom: .7em;
            display: flex;
            align-items: center;
            gap: 1em;
            box-shadow: 0 2px 10px rgba(125, 21, 56, 0.06);
        }

        .moderator-text {
            font-size: 1rem;
            color: #333;
        }

        .moderator-text a {
            color: var(--primary-maroon);
            text-decoration: underline;
            font-weight: 600;
        }

        .moderator-text a:hover {
            color: var(--secondary-maroon);
        }

        .panel-list {
            margin-top: 1rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: .75rem;
        }

        .panelist-item {
            background: linear-gradient(135deg, var(--bg-light) 0, white 100%);
            padding: .75rem 1rem;
            border-radius: 10px;
            border: 1px solid rgba(125, 21, 56, 0.1);
            transition: all .3s;
        }

        .panelist-number {
            display: inline-block;
            width: 24px;
            height: 24px;
            background: var(--primary-maroon);
            color: #fff;
            border-radius: 50%;
            text-align: center;
            line-height: 24px;
            font-size: .85rem;
            margin-right: .5rem;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: #fff;
            padding: 30px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-section h4 {
            margin-bottom: 1.5rem;
            color: var(--light-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: .75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
        }

        /* ========== RESPONSIVE BREAKPOINTS ========== */
        @media (max-width: 1200px) {
            .nav-logos {
                gap: 1.8rem;
            }

            .nav-logo.icac {
                height: 50px;
            }

            .nav-logo.acta {
                height: 38px;
            }

            .nav-logo.unodc {
                height: 47px;
            }

            .nav-logo.iaaca {
                height: 53px;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .nav-link {
                padding: 0.75rem 1rem;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 1024px) {
            .desktop-navigation {
                display: none !important;
            }

            .mobile-navigation {
                display: block;
            }

            .hero-section {
                margin-top: 135px;
                padding: 35px 0 25px;
            }

            .top-bar-info {
                display: none;
            }

            .top-bar-brand {
                font-size: 1rem;
            }

            .top-bar-brand span {
                display: none;
            }

            .timeline-item {
                flex-direction: column;
                gap: .5rem;
            }

            .timeline-time {
                width: auto;
                font-size: 1rem;
            }

            .panel-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                height: 60px;
            }

            .top-bar.scrolled {
                height: 50px;
            }

            .mobile-navigation {
                top: 60px;
                height: 60px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 50px;
            }

            .hero-section {
                margin-top: 120px;
                padding: 30px 0 20px;
            }

            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 0.3rem;
            }

            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
                margin-bottom: 0.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .timeline-event {
                font-size: 1.1rem;
            }

            .programme-timeline {
                padding: 2rem 1rem;
            }

            .timeline-item {
                padding: 1.5rem;
            }

            .speaker-item {
                padding: 0.875rem 1rem;
            }

            .speaker-name {
                font-size: 0.95rem;
            }

            .speaker-title {
                font-size: 0.85rem;
            }

            .session-toggle {
                padding: 1.5rem;
                font-size: 1.1rem;
            }

            .session-content.expanded {
                padding: 1.5rem;
            }

            .mobile-nav-header {
                padding: 0.5rem 1.25rem;
            }

            .mobile-menu-title {
                font-size: 1.8rem;
                margin-bottom: 1.8rem;
            }

            .mobile-nav-link {
                font-size: 1.3rem;
                padding: 0.7rem 1.3rem;
            }

            .mobile-menu-close {
                top: 1.2rem;
                right: 1.2rem;
                width: 42px;
                height: 42px;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                height: 55px;
            }

            .top-bar.scrolled {
                height: 45px;
            }

            .mobile-navigation {
                top: 55px;
                height: 55px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 45px;
            }

            .hero-section {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .hero-title {
                font-size: 1.6rem;
                line-height: 1.1;
            }

            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.3rem 0.7rem;
                margin-bottom: 0.6rem;
            }

            .mobile-brand-text {
                font-size: 1rem;
            }

            .mobile-menu-btn {
                width: 45px;
                height: 45px;
            }

            .mobile-menu-title {
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
            }

            .mobile-nav-link {
                font-size: 1.2rem;
                padding: 0.6rem 1.1rem;
            }

            .mobile-menu-close {
                top: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .top-bar-container {
                padding: 0.5rem 1rem;
            }

            .programme {
                padding: 40px 0;
            }

            .schedule-header {
                padding: 2rem 1rem;
            }

            .schedule-title {
                font-size: 1.5rem;
            }

            .timeline-time {
                font-size: 1rem;
            }

            .break-item,
            .photo-session {
                padding: 1.2rem 2rem;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 360px) {
            .top-bar-container {
                padding: 0.5rem 0.75rem;
            }

            .top-bar-brand {
                gap: 0.5rem;
            }
        }


        /* Desktop Footer Layout */
        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            /* Desktop: 4 columns */
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        /* Tablet Layout */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                /* Tablet: 2 columns */
                gap: 2.5rem;
                padding: 0 1.5rem;
            }
        }

        /* Mobile Layout */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                /* Mobile: 1 column */
                gap: 2rem;
                padding: 0 1.5rem;
                text-align: center;
                /* Center align on mobile */
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
                /* More prominent on mobile */
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
                /* Center links on mobile */
            }

            .footer-links li {
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.9);
                /* Slightly brighter on mobile */
                font-size: 0.95rem;
                padding: 0.3rem 0;
                display: block;
                transition: all 0.3s ease;
            }

            .footer-links a:hover {
                color: var(--accent-gold);
                transform: translateY(-1px);
            }
        }

        /* Small Mobile Layout */
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 1rem;
                gap: 1.5rem;
            }

            .footer-section {
                padding: 1rem 0;
            }

            .footer-section h4 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }
        }

        /* ========== IMPROVED FOOTER BOTTOM FOR MOBILE ========== */

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            /* Increased padding */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
            /* Limit width for readability */
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* Mobile Footer Bottom */
        @media (max-width: 768px) {
            .footer-bottom {
                padding: 1.5rem 1.5rem;
                gap: 1.2rem;
            }

            .footer-bottom p {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            .footer-bottom img {
                width: 80px;
                /* Smaller on mobile */
                height: 32px;
            }
        }

        @media (max-width: 480px) {
            .footer-bottom {
                padding: 1.2rem 1rem;
                gap: 1rem;
            }

            .footer-bottom p {
                font-size: 0.8rem;
            }

            .footer-bottom img {
                width: 70px;
                /* Even smaller on small mobile */
                height: 28px;
            }
        }

        /* ========== ENHANCED ABOUT SECTION FOR BETTER READABILITY ========== */

        .about-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .about-main-text {
            font-size: 1.1rem;
            /* Slightly reduced from 1.16rem */
            color: #444;
            line-height: 1.7;
            /* Improved line height */
            margin: 0 auto;
            max-width: 800px;
            text-align: justify;
        }

        .about-main-text p {
            margin-bottom: 1.2rem;
        }

        /* Mobile About Section */
        @media (max-width: 768px) {
            .about-content {
                padding: 2rem 1.5rem;
                /* Reduced padding on mobile */
                margin: 0 1rem;
                /* Add margin for breathing room */
            }

            .about-main-text {
                font-size: 1rem;
                text-align: left;
                /* Left align on mobile for better readability */
                line-height: 1.6;
            }

            .about-header {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .about-content {
                padding: 1.5rem 1rem;
                margin: 0 0.5rem;
            }

            .about-main-text {
                font-size: 0.95rem;
            }

            .about-main-text p {
                margin-bottom: 1rem;
            }
        }


        /* On screens wider than 1024px, allow the desktop nav to flow into two rows */
        @media (min-width: 1025px) {
            .desktop-navigation {
                /* auto-height so it grows to two rows */
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                /* allow wrapping, center the content */
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
                /* vertical gap then horizontal gap */
            }

            .nav-menu-section {
                /* push the menu below the logos */
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
                /* adjust as needed */
            }

            .nav-item {
                /* each item keeps its width */
                flex: 0 0 auto;
            }
        }





        /* ========== TWO-ROW NAVIGATION ON MEDIUM-LARGE SCREENS ========== */
        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* push hero down under two rows */
            .hero-section {
                margin-top: calc(70px + 2 * 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 80px);
            }
        }

        /* ========== SINGLE-ROW NAVIGATION ON XL SCREENS ========== */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                display: flex;
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* restore original hero offset */
            .hero-section {
                margin-top: 150px;
                /* 70px top-bar + 80px nav */
            }

            .top-bar.scrolled~.hero-section {
                margin-top: 140px;
                /* 60px scrolled top-bar + 80px nav */
            }
        }

        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }



        }

        /* ========== SINGLE-ROW NAVIGATION ON XL SCREENS ========== */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                display: flex;
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* restore original hero offset */
            .hero-section {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 80px);
            }
        }

        @media (min-width: 1025px) and (max-width: 1800px) {

            /* if each nav row is roughly 90px tall… */
            .hero-section {
                margin-top: calc(70px + 2 * 90px);
                /* 70px top-bar + two 90px nav rows */
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 90px);
                /* 60px scrolled top-bar + two rows */
            }
        }


        .footer-content {
            max-width: 1200px;
            margin: 0 auto 3rem auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            flex: 1 1 220px;
            min-width: 220px;
            max-width: 340px;
        }

        @media (max-width: 1024px) {
            .footer-content {
                flex-direction: row;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }

            .footer-section {
                min-width: 180px;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
                padding: 0 1rem;
                text-align: center;
            }

            .footer-section {
                min-width: 0;
                max-width: 100%;
                padding: 1.2rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }
        }



        /* When top-bar is scrolled, adjust margin-top similar to hero-section */
        .top-bar.scrolled~.programme {
            margin-top: 140px;
        }

        /* Two-row desktop nav, adjust margin-top accordingly */
        @media (min-width: 1025px) and (max-width: 1800px) {
            .programme {
                margin-top: calc(70px + 2 * 90px);
            }

            .top-bar.scrolled~.programme {
                margin-top: calc(60px + 2 * 90px);
            }
        }

        /* XL screens single row nav */
        @media (min-width: 1801px) {
            .programme {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.programme {
                margin-top: calc(60px + 80px);
            }
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .programme {
                margin-top: 135px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.programme {
                margin-top: 125px;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .programme {
                margin-top: 120px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.programme {
                margin-top: 110px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .programme {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .top-bar.scrolled~.programme {
                margin-top: 100px;
            }
        }

        @media (max-width: 360px) {
            .programme {
                margin-top: 100px;
            }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* Three equal columns */
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            min-width: 0;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }

        .footer-section h4 {
            margin-bottom: 1.2rem;
            color: var(--light-gold);
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
                margin-bottom: 1.2rem;
            }

            .footer-section {
                min-width: 140px;
                max-width: 100%;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 0 0.5rem;
                text-align: center;
                margin-bottom: 0.8rem;
            }

            .footer-section {
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 0.8rem;
                font-size: 1rem;
                color: var(--accent-gold);
            }

            .footer-links {
                gap: 0.3rem;
                align-items: center;
            }

            .footer-links li {
                margin-bottom: 0.3rem;
            }

            .footer-links a {
                font-size: 0.95rem;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 0.3rem;
                gap: 0.6rem;
                margin-bottom: 0.4rem;
            }

            .footer-section {
                padding: 0.7rem 0;
            }

            .footer-section h4 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                font-size: 0.88rem;
            }
        }


        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            min-width: 0;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }

        .footer-section h4 {
            margin-bottom: 1.2rem;
            color: var(--light-gold);
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* Responsive Breakpoints for Footer */

        /* Tablet and below */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }
        }

        /* Mobile specific */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1.5rem;
                text-align: center;
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 0.3rem;
                gap: 0.6rem;
                margin-bottom: 0.4rem;
            }

            .footer-section h4 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                font-size: 0.88rem;
            }
        }

         .mobile-submenu.active {
    max-height: 400px; /* Increased to accommodate 5 items */
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --primary-maroon: #7d1538;
            --secondary-maroon: #a91b60;
            --accent-gold: #d4af37;
            --light-gold: #f4e4c1;
            --text-light: #fff;
            --text-dark: #2c2c2c;
            --bg-light: #faf8f5;
            --gradient-primary: linear-gradient(135deg, #7d1538 0, #a91b60 50%, #c42275 100%);
            --gradient-secondary: linear-gradient(135deg, #5d0f28 0, #7d1538 100%);
            --shadow-soft: 0 4px 20px rgba(125, 21, 56, 0.15);
            --shadow-medium: 0 8px 32px rgba(125, 21, 56, 0.2);
            --border-radius: 12px;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--gradient-secondary);
            color: var(--text-light);
            z-index: 2000;
            transition: var(--transition-smooth);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            height: 70px;
        }

        .top-bar.scrolled {
            background: rgba(93, 15, 40, 0.95);
            box-shadow: var(--shadow-soft);
            height: 60px;
        }

        .top-bar-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0.75rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .top-bar.scrolled .top-bar-container {
            padding: 0.5rem 2rem;
        }

        .top-bar-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--accent-gold);
        }

        .top-bar-brand span {
            transition: var(--transition-smooth);
        }

        .top-bar-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .top-bar-info {
            display: flex;
            gap: 2rem;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-icon {
            width: 16px;
            height: 16px;
            opacity: 0.8;
        }

        /* Font Size Controls */
        .font-size-switcher {
            display: flex;
            gap: 0.25rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.25rem;
            border-radius: 8px;
        }

        .font-size-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            width: 2rem;
            height: 2rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .font-size-btn.active,
        .font-size-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.1);
        }

        /* ========== DESKTOP NAVIGATION ========== */
        .desktop-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(125, 21, 56, 0.1);
            z-index: 1500;
            transition: var(--transition-smooth);
            box-shadow: 0 2px 20px rgba(125, 21, 56, 0.08);
            height: 80px;
        }

        .top-bar.scrolled~.desktop-navigation {
            top: 60px;
        }

        .desktop-nav-container {
            max-width: 1800px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            height: 100%;
            gap: 3rem;
        }

        /* Logo Section */
        .nav-logo-section {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-shrink: 0;
        }

        .nav-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-logos a {
            display: inline-block;
            transition: var(--transition-smooth);
            border-radius: 6px;
            padding: 0.25rem;
        }

        .nav-logos a:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: scale(1.05);
        }

        .nav-logos a:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .nav-logo {
            object-fit: contain;
            transition: var(--transition-smooth);
            border-radius: 6px;
            display: block;
        }

        .nav-logos a:hover .nav-logo {
            filter: brightness(1.1) contrast(1.05);
        }

        /* Logo Heights */
        .nav-logo.icac {
            height: 55px;
        }

        .nav-logo.acta {
            height: 45px;
        }

        .nav-logo.unodc {
            height: 52px;
        }

        .nav-logo.iaaca {
            height: 58px;
        }

        /* Navigation Menu */
        .nav-menu-section {
            flex: 1;
            display: flex;
            justify-content: center;
            margin-left: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            white-space: nowrap;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.75rem 1.25rem;
            border-radius: var(--border-radius);
            transition: var(--transition-smooth);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-width: fit-content;
        }

        .nav-link:hover {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.15);
        }

        .nav-link.has-dropdown::after {
            content: '▾';
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            margin-left: 0.25rem;
            flex-shrink: 0;
        }

        .nav-item:hover .nav-link.has-dropdown::after {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            margin-top: 0.5rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0) scale(1);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: white;
            transform: translateX(-50%) rotate(45deg);
            border-left: 1px solid rgba(212, 175, 55, 0.2);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition-smooth);
            font-weight: 500;
            border-bottom: 1px solid rgba(125, 21, 56, 0.06);
            position: relative;
            white-space: nowrap;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: var(--light-gold);
            color: var(--primary-maroon);
            padding-left: 2rem;
        }

        .dropdown-item:hover::before {
            content: '→';
            position: absolute;
            left: 1rem;
            color: var(--accent-gold);
            font-weight: bold;
        }

        /* ========== MOBILE NAVIGATION ========== */
        .mobile-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 3px solid var(--accent-gold);
            z-index: 1500;
            display: none;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-soft);
            height: 65px;
        }

        .top-bar.scrolled~.mobile-navigation {
            top: 60px;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1.5rem;
            height: 100%;
        }

        .mobile-brand-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mobile-brand-text {
            font-size: 1.2rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Modern Hamburger Menu */
        .mobile-menu-btn {
            position: relative;
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid var(--primary-maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.2);
            z-index: 1600;
        }

        .mobile-menu-btn:hover {
            background: var(--light-gold);
            border-color: var(--secondary-maroon);
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(125, 21, 56, 0.3);
        }

        .mobile-menu-btn.active {
            background: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }

        .hamburger-lines {
            position: relative;
            width: 24px;
            height: 18px;
        }

        .hamburger-lines span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-maroon);
            border-radius: 2px;
            transition: var(--transition-smooth);
            transform-origin: center;
        }

        .hamburger-lines span:nth-child(1) {
            top: 0;
        }

        .hamburger-lines span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-lines span:nth-child(3) {
            bottom: 0;
        }

        .mobile-menu-btn.active .hamburger-lines span {
            background: var(--accent-gold);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(2) {
            opacity: 0;
            transform: translateY(-50%) scale(0);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Full Screen Mobile Menu */
        .mobile-fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--gradient-primary);
            z-index: 1550;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(0.95);
            z-index: 9999;
        }

        .mobile-fullscreen-menu.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .mobile-menu-content {
            text-align: center;
            width: 90%;
            max-width: 350px;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            color: var(--accent-gold);
            font-size: 1.2rem;
            font-weight: bold;
            z-index: 1560;
        }

        .mobile-menu-close:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            transform: scale(1.1);
        }

        .mobile-menu-title {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-item {
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-nav-link {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 0.5rem;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .mobile-nav-link.has-submenu {
            position: relative;
        }

        .mobile-nav-link.has-submenu::after {
            content: '▾';
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .mobile-nav-link.has-submenu.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* Mobile Submenu */
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 0.3rem;
        }

        .mobile-submenu.active {
            max-height: 250px;
        }

        .mobile-submenu-item {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            padding: 0.6rem 1.5rem;
            margin-left: 1rem;
            border-left: 2px solid var(--accent-gold);
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 8px 8px 0;
            margin-bottom: 0.3rem;
        }

        .mobile-submenu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding-left: 2rem;
        }

        /* Mobile Menu Footer */
        .mobile-menu-footer {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .mobile-menu-footer .conference-info {
            margin-bottom: 0.3rem;
        }

        .mobile-menu-footer .conference-date {
            color: var(--accent-gold);
            font-weight: 500;
        }

        /* Body lock when mobile menu is open */
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* ========== HERO SECTION - THIN VERSION ========== */
        .hero-section {
            margin-top: 150px;
            background: var(--gradient-primary);
            color: #fff;
            padding: 40px 0 30px;
            position: relative;
            text-align: center;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 500;
        }

        .breadcrumb a {
            color: #fff;
            text-decoration: none;
            opacity: .8;
            transition: opacity 0.3s ease;
        }

        .breadcrumb a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .hero-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-bottom: 0.1em;
        }

        /* Section Styling */
        .section-tag {
            display: inline-block;
            padding: .5rem 1.5rem;
            background: var(--light-gold);
            color: var(--primary-maroon);
            border-radius: 30px;
            font-size: .875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        /* ========== MAIN CONTENT SECTION ========== */
        .main-content {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--bg-light) 0%, #f0f6ff 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .content-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-top: 1rem;
        }

        /* ========== GALLERY FILTERS ========== */
        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.75rem 1.5rem;
            background: #fff;
            border: 2px solid var(--primary-maroon);
            color: var(--primary-maroon);
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-maroon);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(125, 21, 56, 0.3);
        }

        /* ========== COMING SOON SECTION ========== */
        .coming-soon-section {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.08);
            border: 1px solid rgba(125, 21, 56, 0.1);
            margin-top: 2rem;
        }

        .coming-soon-header {
            background: var(--gradient-primary);
            color: #fff;
            padding: 2.5rem 2rem;
            text-align: center;
        }

        .coming-soon-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .coming-soon-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .coming-soon-content {
            padding: 2.5rem 2rem;
            background: #fff;
            text-align: center;
        }

        .coming-soon-description {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 2rem;
        }

        .coming-soon-description-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
        }

        .coming-soon-description-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: #fff;
            padding: 30px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-section h4 {
            margin-bottom: 1.5rem;
            color: var(--light-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: .75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
        }

        /* ========== RESPONSIVE BREAKPOINTS ========== */
        @media (max-width: 1200px) {
            .nav-logos {
                gap: 1.8rem;
            }

            .nav-logo.icac {
                height: 50px;
            }

            .nav-logo.acta {
                height: 38px;
            }

            .nav-logo.unodc {
                height: 47px;
            }

            .nav-logo.iaaca {
                height: 53px;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .nav-link {
                padding: 0.75rem 1rem;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 1024px) {
            .desktop-navigation {
                display: none !important;
            }

            .mobile-navigation {
                display: block;
            }

            .hero-section {
                margin-top: 135px;
                padding: 35px 0 25px;
            }

            .top-bar-info {
                display: none;
            }

            .top-bar-brand {
                font-size: 1rem;
            }

            .top-bar-brand span {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                height: 60px;
            }

            .top-bar.scrolled {
                height: 50px;
            }

            .mobile-navigation {
                top: 60px;
                height: 60px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 50px;
            }

            .hero-section {
                margin-top: 120px;
                padding: 30px 0 20px;
            }

            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 0.3rem;
            }

            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
                margin-bottom: 0.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .gallery-filters {
                gap: 0.5rem;
            }

            .filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }

            .coming-soon-header {
                padding: 2rem 1.5rem;
            }

            .coming-soon-content {
                padding: 2rem 1.5rem;
            }

            .coming-soon-title {
                font-size: 1.6rem;
            }

            .main-content {
                padding: 40px 0;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                height: 55px;
            }

            .top-bar.scrolled {
                height: 45px;
            }

            .mobile-navigation {
                top: 55px;
                height: 55px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 45px;
            }

            .hero-section {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .hero-title {
                font-size: 1.6rem;
                line-height: 1.1;
            }

            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.3rem 0.7rem;
                margin-bottom: 0.6rem;
            }

            .mobile-brand-text {
                font-size: 1rem;
            }

            .mobile-menu-btn {
                width: 45px;
                height: 45px;
            }

            .coming-soon-header {
                padding: 1.5rem 1rem;
            }

            .coming-soon-content {
                padding: 1.5rem 1rem;
            }

            .coming-soon-description {
                padding: 1.5rem;
            }

            .coming-soon-title {
                font-size: 1.4rem;
            }

            .filter-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 360px) {
            .top-bar-container {
                padding: 0.5rem 0.75rem;
            }

            .top-bar-brand {
                gap: 0.5rem;
            }
        }

        /* Desktop Footer Layout */
        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            /* Desktop: 4 columns */
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        /* Tablet Layout */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                /* Tablet: 2 columns */
                gap: 2.5rem;
                padding: 0 1.5rem;
            }
        }

        /* Mobile Layout */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                /* Mobile: 1 column */
                gap: 2rem;
                padding: 0 1.5rem;
                text-align: center;
                /* Center align on mobile */
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
                /* More prominent on mobile */
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
                /* Center links on mobile */
            }

            .footer-links li {
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.9);
                /* Slightly brighter on mobile */
                font-size: 0.95rem;
                padding: 0.3rem 0;
                display: block;
                transition: all 0.3s ease;
            }

            .footer-links a:hover {
                color: var(--accent-gold);
                transform: translateY(-1px);
            }
        }

        /* Small Mobile Layout */
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 1rem;
                gap: 1.5rem;
            }

            .footer-section {
                padding: 1rem 0;
            }

            .footer-section h4 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }
        }

        /* ========== IMPROVED FOOTER BOTTOM FOR MOBILE ========== */

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            /* Increased padding */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
            /* Limit width for readability */
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* Mobile Footer Bottom */
        @media (max-width: 768px) {
            .footer-bottom {
                padding: 1.5rem 1.5rem;
                gap: 1.2rem;
            }

            .footer-bottom p {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            .footer-bottom img {
                width: 80px;
                /* Smaller on mobile */
                height: 32px;
            }
        }

        @media (max-width: 480px) {
            .footer-bottom {
                padding: 1.2rem 1rem;
                gap: 1rem;
            }

            .footer-bottom p {
                font-size: 0.8rem;
            }

            .footer-bottom img {
                width: 70px;
                /* Even smaller on small mobile */
                height: 28px;
            }
        }




        /* ========== TWO-ROW NAVIGATION ON MEDIUM-LARGE SCREENS ========== */
        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* push hero down under two rows */
            .hero-section {
                margin-top: calc(70px + 2 * 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 80px);
            }
        }

        /* ========== SINGLE-ROW NAVIGATION ON XL SCREENS ========== */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                display: flex;
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* restore original hero offset */
            .hero-section {
                margin-top: 150px;
                /* 70px top-bar + 80px nav */
            }

            .top-bar.scrolled~.hero-section {
                margin-top: 140px;
                /* 60px scrolled top-bar + 80px nav */
            }
        }

        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }



        }

        /* ========== SINGLE-ROW NAVIGATION ON XL SCREENS ========== */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                display: flex;
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* restore original hero offset */
            .hero-section {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 80px);
            }
        }

        @media (min-width: 1025px) and (max-width: 1800px) {

            /* if each nav row is roughly 90px tall… */
            .hero-section {
                margin-top: calc(70px + 2 * 90px);
                /* 70px top-bar + two 90px nav rows */
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 90px);
                /* 60px scrolled top-bar + two rows */
            }
        }


        .footer-content {
            max-width: 1200px;
            margin: 0 auto 3rem auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            flex: 1 1 220px;
            min-width: 220px;
            max-width: 340px;
        }

        @media (max-width: 1024px) {
            .footer-content {
                flex-direction: row;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }

            .footer-section {
                min-width: 180px;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
                padding: 0 1rem;
                text-align: center;
            }

            .footer-section {
                min-width: 0;
                max-width: 100%;
                padding: 1.2rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }
        }

        /* ========== MAIN CONTENT SECTION - MARGIN-TOP FOLLOWS HERO SECTION BEHAVIOR ========== */
        .main-content {
            margin-top: 150px;
            padding: 60px 0;
            background: linear-gradient(135deg, var(--bg-light) 0%, #f0f6ff 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .top-bar.scrolled~.main-content {
            margin-top: 140px;
        }

        @media (min-width: 1025px) and (max-width: 1800px) {
            .main-content {
                margin-top: calc(70px + 2 * 90px);
            }

            .top-bar.scrolled~.main-content {
                margin-top: calc(60px + 2 * 90px);
            }
        }

        @media (min-width: 1801px) {
            .main-content {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.main-content {
                margin-top: calc(60px + 80px);
            }
        }

        @media (max-width: 1024px) {
            .main-content {
                margin-top: 135px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 125px;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                margin-top: 120px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 110px;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 100px;
            }
        }

        @media (max-width: 360px) {
            .main-content {
                margin-top: 100px;
            }
        }


        /* ========== CONTACT SECTION ========== */
        .contact-section {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.08);
            border: 1px solid rgba(125, 21, 56, 0.1);
            margin-top: 2rem;
        }

        .contact-header {
            background: var(--gradient-primary);
            color: #fff;
            padding: 2.5rem 2rem;
            text-align: center;
        }

        .contact-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .contact-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .contact-content {
            padding: 2.5rem 2rem;
            background: #fff;
        }

        .contact-info-card {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
        }

        .contact-method-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
        }

        .contact-email {
            display: inline-block;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-maroon);
            text-decoration: none;
            padding: 1rem 2rem;
            background: var(--light-gold);
            border-radius: 8px;
            border: 1px solid var(--accent-gold);
            transition: all 0.3s ease;
            margin: 1rem 0;
        }

        .contact-email:hover {
            background: var(--accent-gold);
            color: #fff;
            transform: translateY(-1px);
        }

        .contact-description {
            background: rgba(125, 21, 56, 0.03);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
            border: 1.5px solid var(--accent-gold);
        }

        .contact-description-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-maroon);
            margin-bottom: 0.5rem;
        }

        .contact-description-text {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

        /* Responsive adjustments for contact-section */
        @media (max-width: 768px) {
            .contact-header {
                padding: 2rem 1.5rem;
            }

            .contact-content {
                padding: 2rem 1.5rem;
            }

            .contact-title {
                font-size: 1.6rem;
            }

            .contact-email {
                font-size: 1.1rem;
                padding: 0.8rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .contact-header {
                padding: 1.5rem 1rem;
            }

            .contact-content {
                padding: 1.5rem 1rem;
            }

            .contact-info-card {
                padding: 1.5rem;
            }

            .contact-title {
                font-size: 1.4rem;
            }

            .contact-email {
                font-size: 1rem;
                padding: 0.7rem 1.2rem;
            }
        }


        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            min-width: 0;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }

        .footer-section h4 {
            margin-bottom: 1.2rem;
            color: var(--light-gold);
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* Responsive Breakpoints for Footer */

        /* Tablet and below */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }
        }

        /* Mobile specific */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1.5rem;
                text-align: center;
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 0.3rem;
                gap: 0.6rem;
                margin-bottom: 0.4rem;
            }

            .footer-section h4 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                font-size: 0.88rem;
            }
        }

        /* =========================
           Speaker Sections (collapsible)
           ========================= */
        /* ======= PATCH: CSS below is merged and reorganized from speakers copy.html ======= */
        .speaker-section {
            margin-bottom: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            background: transparent;
        }

        .speaker-section:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .speaker-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 1.5rem 2rem;
            background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--secondary-maroon) 100%);
            border-radius: 15px 15px 0 0;
            transition: all 0.3s ease;
            user-select: none;
            position: relative;
        }

        .speaker-section-header:hover {
            background: linear-gradient(135deg, var(--secondary-maroon) 0%, #a91e4a 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(125, 21, 56, 0.3);
        }

        .section-header-content {
            flex: 1;
        }

        .speaker-section-title {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .speaker-section-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin: 0.5rem 0 0 0;
            font-weight: 400;
        }

        .collapse-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }

        .collapse-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: var(--accent-gold);
            transform: scale(1.1);
        }

        .collapse-icon {
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .speaker-section.collapsed .collapse-icon {
            transform: rotate(-90deg);
        }

        .collapsible-content {
            overflow: hidden;
            transition: all 0.4s ease-in-out;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 0 0 15px 15px;
            backdrop-filter: blur(10px);
        }

        .speaker-section.collapsed .collapsible-content {
            max-height: 0 !important;
            padding-top: 0 !important;
            padding-bottom: 0 !important;
            opacity: 0 !important;
            overflow: hidden;
        }

        .speaker-section:not(.collapsed) .collapsible-content {
            padding: 2rem;
            opacity: 1;
            overflow: visible;
        }

        .speaker-section-body {
            padding: 2.5rem 2rem;
            background: #fff;
        }

        /* subsection header */
        .subsection-header {
            text-align: center;
            margin: 3rem 0 2rem;
        }

        .subsection-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 0.5rem;
            position: relative;
        }

        .subsection-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        .subsection-note {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
        }

        /* highlight animation */
        .speaker-section.highlight {
            animation: sectionHighlight 2s ease-in-out;
        }

        @keyframes sectionHighlight {
            0% {
                box-shadow: 0 15px 40px rgba(125, 21, 56, 0.2);
                border: 2px solid var(--accent-gold);
            }

            50% {
                box-shadow: 0 20px 50px rgba(125, 21, 56, 0.3);
                border: 2px solid var(--primary-maroon);
            }

            100% {
                box-shadow: 0 15px 40px rgba(125, 21, 56, 0.15);
                border: 1px solid rgba(125, 21, 56, 0.1);
            }
        }

        /* Speaker Grid & Cards */
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .speaker-card {
            background: var(--bg-light);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(125, 21, 56, 0.1);
            backdrop-filter: blur(10px);
            min-height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .speaker-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--accent-gold);
        }

        .speaker-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1rem;
            border: 4px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-color: var(--accent-gold);
            background: linear-gradient(145deg, var(--light-gold) 0%, #fff 100%);
            color: var(--primary-maroon);
            font-size: 2rem;
        }

        .speaker-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .speaker-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 0.5rem;
        }

        .speaker-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--secondary-maroon);
            margin-bottom: 1rem;
        }

        .speaker-organization {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .speaker-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 0.6rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            line-height: 1.1;
            white-space: nowrap;
            text-align: center;
            max-width: 120px;
            margin: 0 auto;
        }

        .speaker-btn:hover {
            background: linear-gradient(135deg, var(--secondary-maroon) 0%, #c42275 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(125, 21, 56, 0.3);
        }

        .speaker-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* ======= END PATCH ======= */

        /* =========================
           Modal / Dialog
           ========================= */
        .speaker-modal {
            display: none;
            position: fixed;
            z-index: 10500;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(3px);
        }

        .speaker-modal.show {
            display: block;
        }

        .speaker-modal-content {
            background: #ffffff;
            margin: 2% auto;
            padding: 0;
            border-radius: 20px;
            width: 90%;
            max-width: 750px;
            max-height: 92vh;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: scale(0.9) translateY(30px);
            transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .speaker-modal.show .speaker-modal-content {
            transform: scale(1) translateY(0);
        }

        .modal-header {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            text-align: center;
            padding: 2rem 2rem 1.5rem;
            border-bottom: 2px solid rgba(125, 21, 56, 0.1);
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: #6b7280;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: rgba(239, 68, 68, 0.1);
            border-color: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            transform: scale(1.05);
        }

        .modal-speaker-photo {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
            border: 4px solid var(--accent-gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-speaker-name {
            font-size: 1.6rem;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 0.8rem;
            text-align: center;
            line-height: 1.2;
        }

        .modal-speaker-title {
            font-size: 1rem;
            font-weight: 500;
            color: #7d1538;
            margin-bottom: 0.5rem;
            text-align: center;
            line-height: 1.4;
        }

        .modal-speaker-organization {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            font-weight: 400;
            line-height: 1.4;
            opacity: 0.9;
        }

        .modal-body {
            padding: 2rem 2.5rem 3rem;
            overflow-y: auto;
            flex: 1;
        }

        .modal-speaker-bio {
            font-size: 0.95rem;
            color: #374151;
            line-height: 1.65;
            text-align: justify;
            text-justify: inter-word;
        }

        .modal-speaker-bio p {
            margin-bottom: 1.2rem;
        }

        /* =========================
           Footer
           ========================= */
        footer {
            background: var(--text-dark);
            color: #fff;
            padding: 30px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            min-width: 0;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }

        .footer-section h4 {
            margin-bottom: 1.2rem;
            color: var(--light-gold);
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* =========================
           Accessibility / keyboard focus
           ========================= */
        a:focus,
        button:focus,
        .nav-logos a:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        /* =========================
           Responsive Breakpoints
           Consolidated: desktop (>=1801), large (1025-1800), tablet (<=1024), mobile (<=768, <=480)
           ========================= */

        /* Wide desktops restore single row nav */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu {
                gap: 2rem;
            }

            /* restore original hero/main offsets */
            .hero-section {
                margin-top: 150px;
            }

            .main-content {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.main-content {
                margin-top: calc(60px + 80px);
            }
        }

        /* Medium-large screens: allow two-row nav */
        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* push hero down under two nav rows */
            .hero-section,
            .main-content {
                margin-top: calc(70px + 2 * 90px);
            }

            .top-bar.scrolled~.hero-section,
            .top-bar.scrolled~.main-content {
                margin-top: calc(60px + 2 * 90px);
            }
        }

        /* Tablet and below */
        @media (max-width: 1024px) {
            .desktop-navigation {
                display: none !important;
            }

            .mobile-navigation {
                display: block;
            }

            .hero-section {
                margin-top: 135px;
                padding: 35px 0 25px;
            }

            .top-bar-info {
                display: none;
            }

            .top-bar-brand {
                font-size: 1rem;
            }

            .top-bar-brand span {
                display: none;
            }

            .speakers-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }

            .nav-logo.icac {
                height: 50px;
            }

            .nav-logo.acta {
                height: 38px;
            }

            .nav-logo.unodc {
                height: 47px;
            }

            .nav-logo.iaaca {
                height: 53px;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .nav-link {
                padding: 0.75rem 1rem;
                font-size: 0.95rem;
            }

            .main-content {
                margin-top: 135px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 125px;
            }
        }

        /* Mobile specific */
        @media (max-width: 768px) {
            .top-bar {
                height: 60px;
            }

            .top-bar.scrolled {
                height: 50px;
            }

            .mobile-navigation {
                top: 60px;
                height: 60px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 50px;
            }

            .hero-section {
                margin-top: 120px;
                padding: 30px 0 20px;
            }

            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 0.3rem;
            }

            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
                margin-bottom: 0.8rem;
            }

            .speaker-section-header {
                padding: 1rem 1.5rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .collapse-btn {
                align-self: center;
                margin-left: 0;
            }

            .speaker-section-title {
                font-size: 1.5rem;
            }

            .speaker-section-subtitle {
                font-size: 1rem;
            }

            .speaker-section-body {
                padding: 2rem 1.5rem;
            }

            .speaker-modal-content {
                width: 95%;
                margin: 1% auto;
                max-height: 95vh;
                border-radius: 16px;
            }

            .modal-header {
                padding: 2rem 1.5rem 1.5rem;
            }

            .modal-body {
                padding: 1.5rem 1.5rem 2.5rem;
            }

            .speaker-photo {
                width: 110px;
                height: 110px;
            }

            .modal-speaker-photo {
                width: 130px;
                height: 130px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1.5rem;
                text-align: center;
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                height: 55px;
            }

            .top-bar.scrolled {
                height: 45px;
            }

            .mobile-navigation {
                top: 55px;
                height: 55px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 45px;
            }

            .hero-section {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .hero-title {
                font-size: 1.6rem;
                line-height: 1.1;
            }

            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.3rem 0.7rem;
                margin-bottom: 0.6rem;
            }

            .mobile-brand-text {
                font-size: 1rem;
            }

            .mobile-menu-btn {
                width: 45px;
                height: 45px;
            }

            .speaker-section-header {
                padding: 1rem;
            }

            .speaker-section-title {
                font-size: 1.3rem;
            }

            .collapse-btn {
                width: 40px;
                height: 40px;
            }

            .collapse-icon {
                font-size: 1rem;
            }

            .speaker-section-body {
                padding: 1.5rem 1rem;
            }

            .speaker-card {
                padding: 1.5rem;
            }

            .speaker-modal-content {
                width: 98%;
                margin: 1% auto;
                max-height: 96vh;
            }

            .modal-body {
                padding: 1.2rem 1.2rem 2rem;
            }

            .speaker-photo {
                width: 100px;
                height: 100px;
            }

            .modal-speaker-photo {
                width: 120px;
                height: 120px;
            }

            .footer-content {
                padding: 0 0.3rem;
                gap: 0.6rem;
                margin-bottom: 0.4rem;
            }

            .footer-section h4 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                font-size: 0.88rem;
            }
        }



        .collapsed-placeholder {
            display: none;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
            min-height: 80px;
            margin: 2rem auto 0 auto;
            width: 90%;
            max-width: 500px;
            text-align: center;
            color: #7d1538;
            font-size: 1rem;
            font-weight: 600;
            opacity: 0.95;
            transition: all 0.3s;
            border: 1px solid rgba(125, 21, 56, 0.08);
            padding: 2rem 1rem;
        }

        .main-content {
            margin-top: 150px;
            padding: 60px 0;
            background: linear-gradient(135deg, var(--bg-light) 0%, #f0f6ff 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 4rem;
            padding: 0 2rem;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--light-gold);
            color: var(--primary-maroon);
            border-radius: 30px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        @media (max-width: 1024px) {
            .speakers-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .speaker-section-header {
                padding: 1rem 1.5rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .collapse-btn {
                align-self: center;
                margin-left: 0;
            }

            .speaker-section-title {
                font-size: 1.5rem;
            }

            .speaker-section-subtitle {
                font-size: 1rem;
            }

            .speaker-section-body {
                padding: 2rem 1.5rem;
            }

            .speaker-photo {
                width: 110px;
                height: 110px;
            }
        }

        @media (max-width: 480px) {
            .speaker-section-header {
                padding: 1rem;
            }

            .speaker-section-title {
                font-size: 1.3rem;
            }

            .collapse-btn {
                width: 40px;
                height: 40px;
            }

            .collapse-icon {
                font-size: 1rem;
            }

            .speaker-section-body {
                padding: 1.5rem 1rem;
            }

            .speaker-card {
                padding: 1.5rem;
            }

            .speaker-photo {
                width: 100px;
                height: 100px;
            }
        }

        .modal-speaker-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        /* Center single speaker card in .speakers-grid */
        .speakers-grid:only-child,
        .speakers-grid:has(> .speaker-card:only-child) {
            justify-content: center;
        }

        .speakers-grid>.speaker-card:only-child {
            margin-left: auto;
            margin-right: auto;
            max-width: 400px;
            /* adjust as needed */
            width: 100%;
        }


        @media (max-width: 768px) {
    .speaker-photo {
        width: 140px;
        height: 140px;
        padding: 0;
        margin-bottom: 0.7rem;
        border-width: 3px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.13);
        background: linear-gradient(145deg, var(--light-gold) 0%, #fff 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .speaker-photo img {
        width: 132px;
        height: 132px;
        object-fit: cover;
        border-radius: 50%;
        display: block;
        margin: 0 auto;
    }
}
@media (max-width: 480px) {
    .speaker-photo {
        width: 112px;
        height: 112px;
        border-width: 2px;
        margin-bottom: 0.5rem;
    }
    .speaker-photo img {
        width: 104px;
        height: 104px;
    }
}

 .mobile-submenu.active {
    max-height: 400px; /* Increased to accommodate 5 items */
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --primary-maroon: #7d1538;
            --secondary-maroon: #a91b60;
            --accent-gold: #d4af37;
            --light-gold: #f4e4c1;
            --text-light: #fff;
            --text-dark: #2c2c2c;
            --bg-light: #faf8f5;
            --gradient-primary: linear-gradient(135deg, #7d1538 0, #a91b60 50%, #c42275 100%);
            --gradient-secondary: linear-gradient(135deg, #5d0f28 0, #7d1538 100%);
            --shadow-soft: 0 4px 20px rgba(125, 21, 56, 0.15);
            --shadow-medium: 0 8px 32px rgba(125, 21, 56, 0.2);
            --border-radius: 12px;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--gradient-secondary);
            color: var(--text-light);
            z-index: 2000;
            transition: var(--transition-smooth);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            height: 70px;
        }

        .top-bar.scrolled {
            background: rgba(93, 15, 40, 0.95);
            box-shadow: var(--shadow-soft);
            height: 60px;
        }

        .top-bar-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0.75rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .top-bar.scrolled .top-bar-container {
            padding: 0.5rem 2rem;
        }

        .top-bar-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--accent-gold);
        }

        .top-bar-brand span {
            transition: var(--transition-smooth);
        }

        .top-bar-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .top-bar-info {
            display: flex;
            gap: 2rem;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-icon {
            width: 16px;
            height: 16px;
            opacity: 0.8;
        }

        /* Font Size Controls */
        .font-size-switcher {
            display: flex;
            gap: 0.25rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.25rem;
            border-radius: 8px;
        }

        .font-size-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            width: 2rem;
            height: 2rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .font-size-btn.active,
        .font-size-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.1);
        }

        /* ========== DESKTOP NAVIGATION ========== */
        .desktop-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(125, 21, 56, 0.1);
            z-index: 1500;
            transition: var(--transition-smooth);
            box-shadow: 0 2px 20px rgba(125, 21, 56, 0.08);
            height: 80px;
        }

        .top-bar.scrolled~.desktop-navigation {
            top: 60px;
        }

        .desktop-nav-container {
            max-width: 1800px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            height: 100%;
            gap: 3rem;
        }

        /* Logo Section */
        .nav-logo-section {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-shrink: 0;
        }

        .nav-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-logos a {
            display: inline-block;
            transition: var(--transition-smooth);
            border-radius: 6px;
            padding: 0.25rem;
        }

        .nav-logos a:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: scale(1.05);
        }

        .nav-logos a:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .nav-logo {
            object-fit: contain;
            transition: var(--transition-smooth);
            border-radius: 6px;
            display: block;
        }

        .nav-logos a:hover .nav-logo {
            filter: brightness(1.1) contrast(1.05);
        }

        /* Logo Heights */
        .nav-logo.icac {
            height: 55px;
        }

        .nav-logo.acta {
            height: 45px;
        }

        .nav-logo.unodc {
            height: 52px;
        }

        .nav-logo.iaaca {
            height: 58px;
        }

        /* Navigation Menu */
        .nav-menu-section {
            flex: 1;
            display: flex;
            justify-content: center;
            margin-left: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            white-space: nowrap;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.75rem 1.25rem;
            border-radius: var(--border-radius);
            transition: var(--transition-smooth);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-width: fit-content;
        }

        .nav-link:hover {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.15);
        }

        .nav-link.has-dropdown::after {
            content: '▾';
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            margin-left: 0.25rem;
            flex-shrink: 0;
        }

        .nav-item:hover .nav-link.has-dropdown::after {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            margin-top: 0.5rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0) scale(1);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: white;
            transform: translateX(-50%) rotate(45deg);
            border-left: 1px solid rgba(212, 175, 55, 0.2);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition-smooth);
            font-weight: 500;
            border-bottom: 1px solid rgba(125, 21, 56, 0.06);
            position: relative;
            white-space: nowrap;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: var(--light-gold);
            color: var(--primary-maroon);
            padding-left: 2rem;
        }

        .dropdown-item:hover::before {
            content: '→';
            position: absolute;
            left: 1rem;
            color: var(--accent-gold);
            font-weight: bold;
        }

        /* ========== MOBILE NAVIGATION ========== */
        .mobile-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 3px solid var(--accent-gold);
            z-index: 1500;
            display: none;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-soft);
            height: 65px;
        }

        .top-bar.scrolled~.mobile-navigation {
            top: 60px;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1.5rem;
            height: 100%;
        }

        .mobile-brand-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mobile-brand-text {
            font-size: 1.2rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Modern Hamburger Menu */
        .mobile-menu-btn {
            position: relative;
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid var(--primary-maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.2);
            z-index: 1600;
        }

        .mobile-menu-btn:hover {
            background: var(--light-gold);
            border-color: var(--secondary-maroon);
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(125, 21, 56, 0.3);
        }

        .mobile-menu-btn.active {
            background: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }

        .hamburger-lines {
            position: relative;
            width: 24px;
            height: 18px;
        }

        .hamburger-lines span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-maroon);
            border-radius: 2px;
            transition: var(--transition-smooth);
            transform-origin: center;
        }

        .hamburger-lines span:nth-child(1) {
            top: 0;
        }

        .hamburger-lines span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-lines span:nth-child(3) {
            bottom: 0;
        }

        .mobile-menu-btn.active .hamburger-lines span {
            background: var(--accent-gold);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(2) {
            opacity: 0;
            transform: translateY(-50%) scale(0);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Full Screen Mobile Menu */
        .mobile-fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--gradient-primary);
            z-index: 1550;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(0.95);
            z-index: 9999;
        }

        .mobile-fullscreen-menu.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .mobile-menu-content {
            text-align: center;
            width: 90%;
            max-width: 350px;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            color: var(--accent-gold);
            font-size: 1.2rem;
            font-weight: bold;
            z-index: 1560;
        }

        .mobile-menu-close:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            transform: scale(1.1);
        }

        .mobile-menu-title {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-item {
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-nav-link {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 0.5rem;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .mobile-nav-link.has-submenu {
            position: relative;
        }

        .mobile-nav-link.has-submenu::after {
            content: '▾';
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .mobile-nav-link.has-submenu.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* Mobile Submenu */
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 0.3rem;
        }

        .mobile-submenu.active {
            max-height: 250px;
        }

        .mobile-submenu-item {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            padding: 0.6rem 1.5rem;
            margin-left: 1rem;
            border-left: 2px solid var(--accent-gold);
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 8px 8px 0;
            margin-bottom: 0.3rem;
        }

        .mobile-submenu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding-left: 2rem;
        }

        /* Mobile Menu Footer */
        .mobile-menu-footer {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .mobile-menu-footer .conference-info {
            margin-bottom: 0.3rem;
        }

        .mobile-menu-footer .conference-date {
            color: var(--accent-gold);
            font-weight: 500;
        }

        /* Body lock when mobile menu is open */
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* ========== HERO SECTION - THIN VERSION ========== */
        .hero-section {
            margin-top: 150px;
            background: var(--gradient-primary);
            color: #fff;
            padding: 40px 0 30px;
            position: relative;
            text-align: center;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 500;
        }

        .breadcrumb a {
            color: #fff;
            text-decoration: none;
            opacity: .8;
            transition: opacity 0.3s ease;
        }

        .breadcrumb a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .hero-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-bottom: 0.1em;
        }

        /* Section Styling */
        .section-tag {
            display: inline-block;
            padding: .5rem 1.5rem;
            background: var(--light-gold);
            color: var(--primary-maroon);
            border-radius: 30px;
            font-size: .875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        /* ========== MAIN CONTENT SECTION ========== */
        .main-content {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--bg-light) 0%, #f0f6ff 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .content-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-top: 1rem;
        }

        /* ========== GALLERY FILTERS ========== */
        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.75rem 1.5rem;
            background: #fff;
            border: 2px solid var(--primary-maroon);
            color: var(--primary-maroon);
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-maroon);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(125, 21, 56, 0.3);
        }

        /* ========== COMING SOON SECTION ========== */
        .coming-soon-section {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.08);
            border: 1px solid rgba(125, 21, 56, 0.1);
            margin-top: 2rem;
        }

        .coming-soon-header {
            background: var(--gradient-primary);
            color: #fff;
            padding: 2.5rem 2rem;
            text-align: center;
        }

        .coming-soon-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .coming-soon-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .coming-soon-content {
            padding: 2.5rem 2rem;
            background: #fff;
            text-align: center;
        }

        .coming-soon-description {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 2rem;
        }

        .coming-soon-description-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
        }

        .coming-soon-description-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: #fff;
            padding: 30px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-section h4 {
            margin-bottom: 1.5rem;
            color: var(--light-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: .75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
        }

        /* ========== RESPONSIVE BREAKPOINTS ========== */
        @media (max-width: 1200px) {
            .nav-logos {
                gap: 1.8rem;
            }

            .nav-logo.icac {
                height: 50px;
            }

            .nav-logo.acta {
                height: 38px;
            }

            .nav-logo.unodc {
                height: 47px;
            }

            .nav-logo.iaaca {
                height: 53px;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .nav-link {
                padding: 0.75rem 1rem;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 1024px) {
            .desktop-navigation {
                display: none !important;
            }

            .mobile-navigation {
                display: block;
            }

            .hero-section {
                margin-top: 135px;
                padding: 35px 0 25px;
            }

            .top-bar-info {
                display: none;
            }

            .top-bar-brand {
                font-size: 1rem;
            }

            .top-bar-brand span {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                height: 60px;
            }

            .top-bar.scrolled {
                height: 50px;
            }

            .mobile-navigation {
                top: 60px;
                height: 60px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 50px;
            }

            .hero-section {
                margin-top: 120px;
                padding: 30px 0 20px;
            }

            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 0.3rem;
            }

            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
                margin-bottom: 0.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .gallery-filters {
                gap: 0.5rem;
            }

            .filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }

            .coming-soon-header {
                padding: 2rem 1.5rem;
            }

            .coming-soon-content {
                padding: 2rem 1.5rem;
            }

            .coming-soon-title {
                font-size: 1.6rem;
            }

            .main-content {
                padding: 40px 0;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                height: 55px;
            }

            .top-bar.scrolled {
                height: 45px;
            }

            .mobile-navigation {
                top: 55px;
                height: 55px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 45px;
            }

            .hero-section {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .hero-title {
                font-size: 1.6rem;
                line-height: 1.1;
            }

            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.3rem 0.7rem;
                margin-bottom: 0.6rem;
            }

            .mobile-brand-text {
                font-size: 1rem;
            }

            .mobile-menu-btn {
                width: 45px;
                height: 45px;
            }

            .coming-soon-header {
                padding: 1.5rem 1rem;
            }

            .coming-soon-content {
                padding: 1.5rem 1rem;
            }

            .coming-soon-description {
                padding: 1.5rem;
            }

            .coming-soon-title {
                font-size: 1.4rem;
            }

            .filter-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 360px) {
            .top-bar-container {
                padding: 0.5rem 0.75rem;
            }

            .top-bar-brand {
                gap: 0.5rem;
            }
        }

        /* Desktop Footer Layout */
        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            /* Desktop: 4 columns */
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        /* Tablet Layout */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                /* Tablet: 2 columns */
                gap: 2.5rem;
                padding: 0 1.5rem;
            }
        }

        /* Mobile Layout */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                /* Mobile: 1 column */
                gap: 2rem;
                padding: 0 1.5rem;
                text-align: center;
                /* Center align on mobile */
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
                /* More prominent on mobile */
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
                /* Center links on mobile */
            }

            .footer-links li {
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.9);
                /* Slightly brighter on mobile */
                font-size: 0.95rem;
                padding: 0.3rem 0;
                display: block;
                transition: all 0.3s ease;
            }

            .footer-links a:hover {
                color: var(--accent-gold);
                transform: translateY(-1px);
            }
        }

        /* Small Mobile Layout */
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 1rem;
                gap: 1.5rem;
            }

            .footer-section {
                padding: 1rem 0;
            }

            .footer-section h4 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }
        }

        /* ========== IMPROVED FOOTER BOTTOM FOR MOBILE ========== */

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            /* Increased padding */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
            /* Limit width for readability */
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* Mobile Footer Bottom */
        @media (max-width: 768px) {
            .footer-bottom {
                padding: 1.5rem 1.5rem;
                gap: 1.2rem;
            }

            .footer-bottom p {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            .footer-bottom img {
                width: 80px;
                /* Smaller on mobile */
                height: 32px;
            }
        }

        @media (max-width: 480px) {
            .footer-bottom {
                padding: 1.2rem 1rem;
                gap: 1rem;
            }

            .footer-bottom p {
                font-size: 0.8rem;
            }

            .footer-bottom img {
                width: 70px;
                /* Even smaller on small mobile */
                height: 28px;
            }
        }




        /* ========== TWO-ROW NAVIGATION ON MEDIUM-LARGE SCREENS ========== */
        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* push hero down under two rows */
            .hero-section {
                margin-top: calc(70px + 2 * 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 80px);
            }
        }

        /* ========== SINGLE-ROW NAVIGATION ON XL SCREENS ========== */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                display: flex;
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* restore original hero offset */
            .hero-section {
                margin-top: 150px;
                /* 70px top-bar + 80px nav */
            }

            .top-bar.scrolled~.hero-section {
                margin-top: 140px;
                /* 60px scrolled top-bar + 80px nav */
            }
        }

        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }



        }

        /* ========== SINGLE-ROW NAVIGATION ON XL SCREENS ========== */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                display: flex;
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* restore original hero offset */
            .hero-section {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 80px);
            }
        }

        @media (min-width: 1025px) and (max-width: 1800px) {

            /* if each nav row is roughly 90px tall… */
            .hero-section {
                margin-top: calc(70px + 2 * 90px);
                /* 70px top-bar + two 90px nav rows */
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 90px);
                /* 60px scrolled top-bar + two rows */
            }
        }


        .footer-content {
            max-width: 1200px;
            margin: 0 auto 3rem auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            flex: 1 1 220px;
            min-width: 220px;
            max-width: 340px;
        }

        @media (max-width: 1024px) {
            .footer-content {
                flex-direction: row;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }

            .footer-section {
                min-width: 180px;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
                padding: 0 1rem;
                text-align: center;
            }

            .footer-section {
                min-width: 0;
                max-width: 100%;
                padding: 1.2rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }
        }

        /* ========== MAIN CONTENT SECTION - MARGIN-TOP FOLLOWS HERO SECTION BEHAVIOR ========== */
        .main-content {
            margin-top: 150px;
            padding: 60px 0;
            background: linear-gradient(135deg, var(--bg-light) 0%, #f0f6ff 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .top-bar.scrolled~.main-content {
            margin-top: 140px;
        }

        @media (min-width: 1025px) and (max-width: 1800px) {
            .main-content {
                margin-top: calc(70px + 2 * 90px);
            }

            .top-bar.scrolled~.main-content {
                margin-top: calc(60px + 2 * 90px);
            }
        }

        @media (min-width: 1801px) {
            .main-content {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.main-content {
                margin-top: calc(60px + 80px);
            }
        }

        @media (max-width: 1024px) {
            .main-content {
                margin-top: 135px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 125px;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                margin-top: 120px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 110px;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 100px;
            }
        }

        @media (max-width: 360px) {
            .main-content {
                margin-top: 100px;
            }
        }


        /* ========== CONTACT SECTION ========== */
.contact-section {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(125, 21, 56, 0.08);
    border: 1px solid rgba(125, 21, 56, 0.1);
    margin-top: 2rem;
}

.contact-header {
    background: var(--gradient-primary);
    color: #fff;
    padding: 2.5rem 2rem;
    text-align: center;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.contact-content {
    padding: 2.5rem 2rem;
    background: #fff;
}

.contact-info-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.contact-method-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-maroon);
    margin-bottom: 1rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-maroon);
    text-decoration: none;
    padding: 1rem 2rem;
    background: var(--light-gold);
    border-radius: 8px;
    border: 1px solid var(--accent-gold);
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.contact-email:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-1px);
}

.contact-description {
    background: rgba(125, 21, 56, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border: 1.5px solid var(--accent-gold);
}

.contact-description-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-maroon);
    margin-bottom: 0.5rem;
}

.contact-description-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive adjustments for contact-section */
@media (max-width: 768px) {
    .contact-header {
        padding: 2rem 1.5rem;
    }

    .contact-content {
        padding: 2rem 1.5rem;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-email {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 1.5rem 1rem;
    }

    .contact-content {
        padding: 1.5rem 1rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-title {
        font-size: 1.4rem;
    }

    .contact-email {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}


.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    color: var(--light-gold);
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
}

.footer-bottom img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bottom img:hover {
    opacity: 1;
}

/* Responsive Breakpoints for Footer */

/* Tablet and below */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

/* Mobile specific */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-section {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section h4 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
        color: var(--accent-gold);
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .footer-content {
        padding: 0 0.3rem;
        gap: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.88rem;
    }
}

 .mobile-submenu.active {
    max-height: 400px; /* Increased to accommodate 5 items */
}

       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --primary-maroon: #7d1538;
            --secondary-maroon: #a91b60;
            --accent-gold: #d4af37;
            --light-gold: #f4e4c1;
            --text-light: #fff;
            --text-dark: #2c2c2c;
            --bg-light: #faf8f5;
            --gradient-primary: linear-gradient(135deg, #7d1538 0, #a91b60 50%, #c42275 100%);
            --gradient-secondary: linear-gradient(135deg, #5d0f28 0, #7d1538 100%);
            --shadow-soft: 0 4px 20px rgba(125, 21, 56, 0.15);
            --shadow-medium: 0 8px 32px rgba(125, 21, 56, 0.2);
            --border-radius: 12px;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--gradient-secondary);
            color: var(--text-light);
            z-index: 2000;
            transition: var(--transition-smooth);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            height: 70px;
        }

        .top-bar.scrolled {
            background: rgba(93, 15, 40, 0.95);
            box-shadow: var(--shadow-soft);
            height: 60px;
        }

        .top-bar-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0.75rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .top-bar.scrolled .top-bar-container {
            padding: 0.5rem 2rem;
        }

        .top-bar-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--accent-gold);
        }

        .top-bar-brand span {
            transition: var(--transition-smooth);
        }

        .top-bar-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .top-bar-info {
            display: flex;
            gap: 2rem;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-icon {
            width: 16px;
            height: 16px;
            opacity: 0.8;
        }

        /* Font Size Controls */
        .font-size-switcher {
            display: flex;
            gap: 0.25rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.25rem;
            border-radius: 8px;
        }

        .font-size-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            width: 2rem;
            height: 2rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .font-size-btn.active,
        .font-size-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.1);
        }

        /* ========== DESKTOP NAVIGATION ========== */
        .desktop-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(125, 21, 56, 0.1);
            z-index: 1500;
            transition: var(--transition-smooth);
            box-shadow: 0 2px 20px rgba(125, 21, 56, 0.08);
            height: 80px;
        }

        .top-bar.scrolled~.desktop-navigation {
            top: 60px;
        }

        .desktop-nav-container {
            max-width: 1800px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            height: 100%;
            gap: 3rem;
        }

        /* Logo Section */
        .nav-logo-section {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-shrink: 0;
        }

        .nav-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-logos a {
            display: inline-block;
            transition: var(--transition-smooth);
            border-radius: 6px;
            padding: 0.25rem;
        }

        .nav-logos a:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: scale(1.05);
        }

        .nav-logos a:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .nav-logo {
            object-fit: contain;
            transition: var(--transition-smooth);
            border-radius: 6px;
            display: block;
        }

        .nav-logos a:hover .nav-logo {
            filter: brightness(1.1) contrast(1.05);
        }

        /* Logo Heights */
        .nav-logo.icac {
            height: 55px;
        }

        .nav-logo.acta {
            height: 45px;
        }

        .nav-logo.unodc {
            height: 52px;
        }

        .nav-logo.iaaca {
            height: 58px;
        }

        /* Navigation Menu */
        .nav-menu-section {
            flex: 1;
            display: flex;
            justify-content: center;
            margin-left: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            white-space: nowrap;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.75rem 1.25rem;
            border-radius: var(--border-radius);
            transition: var(--transition-smooth);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-width: fit-content;
        }

        .nav-link:hover {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.15);
        }

        .nav-link.has-dropdown::after {
            content: '▾';
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            margin-left: 0.25rem;
            flex-shrink: 0;
        }

        .nav-item:hover .nav-link.has-dropdown::after {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            margin-top: 0.5rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0) scale(1);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: white;
            transform: translateX(-50%) rotate(45deg);
            border-left: 1px solid rgba(212, 175, 55, 0.2);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition-smooth);
            font-weight: 500;
            border-bottom: 1px solid rgba(125, 21, 56, 0.06);
            position: relative;
            white-space: nowrap;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: var(--light-gold);
            color: var(--primary-maroon);
            padding-left: 2rem;
        }

        .dropdown-item:hover::before {
            content: '→';
            position: absolute;
            left: 1rem;
            color: var(--accent-gold);
            font-weight: bold;
        }

        /* ========== MOBILE NAVIGATION ========== */
        .mobile-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 3px solid var(--accent-gold);
            z-index: 1500;
            display: none;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-soft);
            height: 65px;
        }

        .top-bar.scrolled~.mobile-navigation {
            top: 60px;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1.5rem;
            height: 100%;
        }

        .mobile-brand-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mobile-brand-text {
            font-size: 1.2rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Modern Hamburger Menu */
        .mobile-menu-btn {
            position: relative;
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid var(--primary-maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.2);
            z-index: 1600;
        }

        .mobile-menu-btn:hover {
            background: var(--light-gold);
            border-color: var(--secondary-maroon);
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(125, 21, 56, 0.3);
        }

        .mobile-menu-btn.active {
            background: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }

        .hamburger-lines {
            position: relative;
            width: 24px;
            height: 18px;
        }

        .hamburger-lines span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-maroon);
            border-radius: 2px;
            transition: var(--transition-smooth);
            transform-origin: center;
        }

        .hamburger-lines span:nth-child(1) {
            top: 0;
        }

        .hamburger-lines span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-lines span:nth-child(3) {
            bottom: 0;
        }

        .mobile-menu-btn.active .hamburger-lines span {
            background: var(--accent-gold);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(2) {
            opacity: 0;
            transform: translateY(-50%) scale(0);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Full Screen Mobile Menu */
        .mobile-fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--gradient-primary);
            z-index: 1550;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(0.95);
            z-index: 9999;
        }

        .mobile-fullscreen-menu.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .mobile-menu-content {
            text-align: center;
            width: 90%;
            max-width: 350px;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            color: var(--accent-gold);
            font-size: 1.2rem;
            font-weight: bold;
            z-index: 1560;
        }

        .mobile-menu-close:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            transform: scale(1.1);
        }

        .mobile-menu-title {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-item {
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-nav-link {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 0.5rem;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .mobile-nav-link.has-submenu {
            position: relative;
        }

        .mobile-nav-link.has-submenu::after {
            content: '▾';
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .mobile-nav-link.has-submenu.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* Mobile Submenu */
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 0.3rem;
        }

        .mobile-submenu.active {
            max-height: 250px;
        }

        .mobile-submenu-item {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            padding: 0.6rem 1.5rem;
            margin-left: 1rem;
            border-left: 2px solid var(--accent-gold);
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 8px 8px 0;
            margin-bottom: 0.3rem;
        }

        .mobile-submenu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding-left: 2rem;
        }

        /* Mobile Menu Footer */
        .mobile-menu-footer {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .mobile-menu-footer .conference-info {
            margin-bottom: 0.3rem;
        }

        .mobile-menu-footer .conference-date {
            color: var(--accent-gold);
            font-weight: 500;
        }

        /* Body lock when mobile menu is open */
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* ========== HERO SECTION - THIN VERSION ========== */
        .hero-section {
            margin-top: 150px;
            background: var(--gradient-primary);
            color: #fff;
            padding: 40px 0 30px;
            position: relative;
            text-align: center;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 500;
        }

        .breadcrumb a {
            color: #fff;
            text-decoration: none;
            opacity: .8;
            transition: opacity 0.3s ease;
        }

        .breadcrumb a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .hero-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-bottom: 0.1em;
        }

        /* Section Styling */
        .section-tag {
            display: inline-block;
            padding: .5rem 1.5rem;
            background: var(--light-gold);
            color: var(--primary-maroon);
            border-radius: 30px;
            font-size: .875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        /* ========== MAIN CONTENT SECTION ========== */
        .main-content {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--bg-light) 0%, #f0f6ff 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-top: 1rem;
        }

        /* ========== GALLERY FILTERS ========== */
        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.75rem 1.5rem;
            background: #fff;
            border: 2px solid var(--primary-maroon);
            color: var(--primary-maroon);
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-maroon);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(125, 21, 56, 0.3);
        }

        /* ========== COMING SOON SECTION ========== */
        .coming-soon-section {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.08);
            border: 1px solid rgba(125, 21, 56, 0.1);
            margin-top: 2rem;
        }

        .coming-soon-header {
            background: var(--gradient-primary);
            color: #fff;
            padding: 2.5rem 2rem;
            text-align: center;
        }

        .coming-soon-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .coming-soon-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .coming-soon-content {
            padding: 2.5rem 2rem;
            background: #fff;
            text-align: center;
        }

        .coming-soon-description {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 2rem;
        }

        .coming-soon-description-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
        }

        .coming-soon-description-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: #fff;
            padding: 30px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-section h4 {
            margin-bottom: 1.5rem;
            color: var(--light-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: .75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
        }

        /* ========== RESPONSIVE BREAKPOINTS ========== */
        @media (max-width: 1200px) {
            .nav-logos {
                gap: 1.8rem;
            }

            .nav-logo.icac {
                height: 50px;
            }

            .nav-logo.acta {
                height: 38px;
            }

            .nav-logo.unodc {
                height: 47px;
            }

            .nav-logo.iaaca {
                height: 53px;
            }

            .nav-menu {
                gap: 1.5rem;
            }

            .nav-link {
                padding: 0.75rem 1rem;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 1024px) {
            .desktop-navigation {
                display: none !important;
            }

            .mobile-navigation {
                display: block;
            }

            .hero-section {
                margin-top: 135px;
                padding: 35px 0 25px;
            }

            .top-bar-info {
                display: none;
            }

            .top-bar-brand {
                font-size: 1rem;
            }

            .top-bar-brand span {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                height: 60px;
            }

            .top-bar.scrolled {
                height: 50px;
            }

            .mobile-navigation {
                top: 60px;
                height: 60px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 50px;
            }

            .hero-section {
                margin-top: 120px;
                padding: 30px 0 20px;
            }

            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 0.3rem;
            }

            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
                margin-bottom: 0.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .gallery-filters {
                gap: 0.5rem;
            }

            .filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }

            .coming-soon-header {
                padding: 2rem 1.5rem;
            }

            .coming-soon-content {
                padding: 2rem 1.5rem;
            }

            .coming-soon-title {
                font-size: 1.6rem;
            }

            .main-content {
                padding: 40px 0;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                height: 55px;
            }

            .top-bar.scrolled {
                height: 45px;
            }

            .mobile-navigation {
                top: 55px;
                height: 55px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 45px;
            }

            .hero-section {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .hero-title {
                font-size: 1.6rem;
                line-height: 1.1;
            }

            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.3rem 0.7rem;
                margin-bottom: 0.6rem;
            }

            .mobile-brand-text {
                font-size: 1rem;
            }

            .mobile-menu-btn {
                width: 45px;
                height: 45px;
            }

            .coming-soon-header {
                padding: 1.5rem 1rem;
            }

            .coming-soon-content {
                padding: 1.5rem 1rem;
            }

            .coming-soon-description {
                padding: 1.5rem;
            }

            .coming-soon-title {
                font-size: 1.4rem;
            }

            .filter-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 360px) {
            .top-bar-container {
                padding: 0.5rem 0.75rem;
            }

            .top-bar-brand {
                gap: 0.5rem;
            }
        }

        /* Desktop Footer Layout */
        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            /* Desktop: 4 columns */
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        /* Tablet Layout */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                /* Tablet: 2 columns */
                gap: 2.5rem;
                padding: 0 1.5rem;
            }
        }

        /* Mobile Layout */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                /* Mobile: 1 column */
                gap: 2rem;
                padding: 0 1.5rem;
                text-align: center;
                /* Center align on mobile */
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
                /* More prominent on mobile */
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
                /* Center links on mobile */
            }

            .footer-links li {
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.9);
                /* Slightly brighter on mobile */
                font-size: 0.95rem;
                padding: 0.3rem 0;
                display: block;
                transition: all 0.3s ease;
            }

            .footer-links a:hover {
                color: var(--accent-gold);
                transform: translateY(-1px);
            }
        }

        /* Small Mobile Layout */
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 1rem;
                gap: 1.5rem;
            }

            .footer-section {
                padding: 1rem 0;
            }

            .footer-section h4 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }
        }

        /* ========== IMPROVED FOOTER BOTTOM FOR MOBILE ========== */

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            /* Increased padding */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
            /* Limit width for readability */
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* Mobile Footer Bottom */
        @media (max-width: 768px) {
            .footer-bottom {
                padding: 1.5rem 1.5rem;
                gap: 1.2rem;
            }

            .footer-bottom p {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            .footer-bottom img {
                width: 80px;
                /* Smaller on mobile */
                height: 32px;
            }
        }

        @media (max-width: 480px) {
            .footer-bottom {
                padding: 1.2rem 1rem;
                gap: 1rem;
            }

            .footer-bottom p {
                font-size: 0.8rem;
            }

            .footer-bottom img {
                width: 70px;
                /* Even smaller on small mobile */
                height: 28px;
            }
        }




        /* ========== TWO-ROW NAVIGATION ON MEDIUM-LARGE SCREENS ========== */
        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* push hero down under two rows */
            .hero-section {
                margin-top: calc(70px + 2 * 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 80px);
            }
        }

        /* ========== SINGLE-ROW NAVIGATION ON XL SCREENS ========== */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                display: flex;
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* restore original hero offset */
            .hero-section {
                margin-top: 150px;
                /* 70px top-bar + 80px nav */
            }

            .top-bar.scrolled~.hero-section {
                margin-top: 140px;
                /* 60px scrolled top-bar + 80px nav */
            }
        }

        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }



        }

        /* ========== SINGLE-ROW NAVIGATION ON XL SCREENS ========== */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                display: flex;
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* restore original hero offset */
            .hero-section {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 80px);
            }
        }

        @media (min-width: 1025px) and (max-width: 1800px) {

            /* if each nav row is roughly 90px tall… */
            .hero-section {
                margin-top: calc(70px + 2 * 90px);
                /* 70px top-bar + two 90px nav rows */
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 90px);
                /* 60px scrolled top-bar + two rows */
            }
        }


        .footer-content {
            max-width: 1200px;
            margin: 0 auto 3rem auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            flex: 1 1 220px;
            min-width: 220px;
            max-width: 340px;
        }

        @media (max-width: 1024px) {
            .footer-content {
                flex-direction: row;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }

            .footer-section {
                min-width: 180px;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
                padding: 0 1rem;
                text-align: center;
            }

            .footer-section {
                min-width: 0;
                max-width: 100%;
                padding: 1.2rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }
        }

        /* ========== MAIN CONTENT SECTION - MARGIN-TOP FOLLOWS HERO SECTION BEHAVIOR ========== */
        .main-content {
            margin-top: 150px;
            padding: 60px 0;
            background: linear-gradient(135deg, var(--bg-light) 0%, #f0f6ff 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .top-bar.scrolled~.main-content {
            margin-top: 140px;
        }

        @media (min-width: 1025px) and (max-width: 1800px) {
            .main-content {
                margin-top: calc(70px + 2 * 90px);
            }

            .top-bar.scrolled~.main-content {
                margin-top: calc(60px + 2 * 90px);
            }
        }

        @media (min-width: 1801px) {
            .main-content {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.main-content {
                margin-top: calc(60px + 80px);
            }
        }

        @media (max-width: 1024px) {
            .main-content {
                margin-top: 135px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 125px;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                margin-top: 120px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 110px;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 100px;
            }
        }

        @media (max-width: 360px) {
            .main-content {
                margin-top: 100px;
            }
        }

 

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    color: var(--light-gold);
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
}

.footer-bottom img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bottom img:hover {
    opacity: 1;
}

/* Responsive Breakpoints for Footer */

/* Tablet and below */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

/* Mobile specific */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .footer-section {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section h4 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
        color: var(--accent-gold);
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .footer-content {
        padding: 0 0.3rem;
        gap: 0.6rem;
        margin-bottom: 0.4rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.88rem;
    }
}
 .mobile-submenu.active {
    max-height: 400px; /* Increased to accommodate 5 items */
}

    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --primary-maroon: #7d1538;
            --secondary-maroon: #a91b60;
            --accent-gold: #d4af37;
            --light-gold: #f4e4c1;
            --text-light: #fff;
            --text-dark: #2c2c2c;
            --bg-light: #faf8f5;
            --gradient-primary: linear-gradient(135deg, #7d1538 0, #a91b60 50%, #c42275 100%);
            --gradient-secondary: linear-gradient(135deg, #5d0f28 0, #7d1538 100%);
            --shadow-soft: 0 4px 20px rgba(125, 21, 56, 0.15);
            --shadow-medium: 0 8px 32px rgba(125, 21, 56, 0.2);
            --border-radius: 12px;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--gradient-secondary);
            color: var(--text-light);
            z-index: 2000;
            transition: var(--transition-smooth);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            height: 70px;
        }

        .top-bar.scrolled {
            background: rgba(93, 15, 40, 0.95);
            box-shadow: var(--shadow-soft);
            height: 60px;
        }

        .top-bar-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0.75rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .top-bar.scrolled .top-bar-container {
            padding: 0.5rem 2rem;
        }

        .top-bar-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--accent-gold);
        }

        .top-bar-brand span {
            transition: var(--transition-smooth);
        }

        .top-bar-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .top-bar-info {
            display: flex;
            gap: 2rem;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-icon {
            width: 16px;
            height: 16px;
            opacity: 0.8;
        }

        /* Font Size Controls */
        .font-size-switcher {
            display: flex;
            gap: 0.25rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.25rem;
            border-radius: 8px;
        }

        .font-size-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-light);
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            width: 2rem;
            height: 2rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .font-size-btn.active,
        .font-size-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.1);
        }

        /* ========== DESKTOP NAVIGATION ========== */
        .desktop-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(125, 21, 56, 0.1);
            z-index: 1500;
            transition: var(--transition-smooth);
            box-shadow: 0 2px 20px rgba(125, 21, 56, 0.08);
            height: 80px;
        }

        .top-bar.scrolled~.desktop-navigation {
            top: 60px;
        }

        .desktop-nav-container {
            max-width: 1800px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            height: 100%;
            gap: 3rem;
        }

        /* Logo Section */
        .nav-logo-section {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-shrink: 0;
        }

        .nav-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-logos a {
            display: inline-block;
            transition: var(--transition-smooth);
            border-radius: 6px;
            padding: 0.25rem;
        }

        .nav-logos a:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: scale(1.05);
        }

        .nav-logos a:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .nav-logo {
            object-fit: contain;
            transition: var(--transition-smooth);
            border-radius: 6px;
            display: block;
        }

        .nav-logos a:hover .nav-logo {
            filter: brightness(1.1) contrast(1.05);
        }

        /* Logo Heights */
        .nav-logo.icac {
            height: 55px;
        }

        .nav-logo.acta {
            height: 45px;
        }

        .nav-logo.unodc {
            height: 52px;
        }

        .nav-logo.iaaca {
            height: 58px;
        }

        /* Navigation Menu */
        .nav-menu-section {
            flex: 1;
            display: flex;
            justify-content: center;
            margin-left: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            white-space: nowrap;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.75rem 1.25rem;
            border-radius: var(--border-radius);
            transition: var(--transition-smooth);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-width: fit-content;
        }

        .nav-link:hover {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--primary-maroon);
            background: rgba(212, 175, 55, 0.15);
        }

        .nav-link.has-dropdown::after {
            content: '▾';
            font-size: 0.8rem;
            transition: transform 0.3s ease;
            margin-left: 0.25rem;
            flex-shrink: 0;
        }

        .nav-item:hover .nav-link.has-dropdown::after {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            margin-top: 0.5rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            overflow: hidden;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0) scale(1);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: white;
            transform: translateX(-50%) rotate(45deg);
            border-left: 1px solid rgba(212, 175, 55, 0.2);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition-smooth);
            font-weight: 500;
            border-bottom: 1px solid rgba(125, 21, 56, 0.06);
            position: relative;
            white-space: nowrap;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: var(--light-gold);
            color: var(--primary-maroon);
            padding-left: 2rem;
        }

        .dropdown-item:hover::before {
            content: '→';
            position: absolute;
            left: 1rem;
            color: var(--accent-gold);
            font-weight: bold;
        }

        /* ========== MOBILE NAVIGATION ========== */
        .mobile-navigation {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 3px solid var(--accent-gold);
            z-index: 1500;
            display: none;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-soft);
            height: 65px;
        }

        .top-bar.scrolled~.mobile-navigation {
            top: 60px;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1.5rem;
            height: 100%;
        }

        .mobile-brand-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mobile-brand-text {
            font-size: 1.2rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Modern Hamburger Menu */
        .mobile-menu-btn {
            position: relative;
            width: 50px;
            height: 50px;
            background: white;
            border: 2px solid var(--primary-maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.2);
            z-index: 1600;
        }

        .mobile-menu-btn:hover {
            background: var(--light-gold);
            border-color: var(--secondary-maroon);
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(125, 21, 56, 0.3);
        }

        .mobile-menu-btn.active {
            background: var(--primary-maroon);
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }

        .hamburger-lines {
            position: relative;
            width: 24px;
            height: 18px;
        }

        .hamburger-lines span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-maroon);
            border-radius: 2px;
            transition: var(--transition-smooth);
            transform-origin: center;
        }

        .hamburger-lines span:nth-child(1) {
            top: 0;
        }

        .hamburger-lines span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-lines span:nth-child(3) {
            bottom: 0;
        }

        .mobile-menu-btn.active .hamburger-lines span {
            background: var(--accent-gold);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(2) {
            opacity: 0;
            transform: translateY(-50%) scale(0);
        }

        .mobile-menu-btn.active .hamburger-lines span:nth-child(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Full Screen Mobile Menu */
        .mobile-fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--gradient-primary);
            z-index: 1550;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(0.95);
            z-index: 9999;
        }

        .mobile-fullscreen-menu.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .mobile-menu-content {
            text-align: center;
            width: 90%;
            max-width: 350px;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
            color: var(--accent-gold);
            font-size: 1.2rem;
            font-weight: bold;
            z-index: 1560;
        }

        .mobile-menu-close:hover {
            background: var(--accent-gold);
            color: var(--primary-maroon);
            transform: scale(1.1);
        }

        .mobile-menu-title {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-item {
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-fullscreen-menu.active .mobile-nav-item:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-nav-link {
            display: block;
            color: white;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 0.5rem;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .mobile-nav-link.has-submenu {
            position: relative;
        }

        .mobile-nav-link.has-submenu::after {
            content: '▾';
            position: absolute;
            right: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .mobile-nav-link.has-submenu.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* Mobile Submenu */
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin-top: 0.3rem;
        }

        .mobile-submenu.active {
            max-height: 250px;
        }

        .mobile-submenu-item {
            display: block;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 400;
            padding: 0.6rem 1.5rem;
            margin-left: 1rem;
            border-left: 2px solid var(--accent-gold);
            transition: var(--transition-smooth);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 8px 8px 0;
            margin-bottom: 0.3rem;
        }

        .mobile-submenu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding-left: 2rem;
        }

        /* Mobile Menu Footer */
        .mobile-menu-footer {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .mobile-menu-footer .conference-info {
            margin-bottom: 0.3rem;
        }

        .mobile-menu-footer .conference-date {
            color: var(--accent-gold);
            font-weight: 500;
        }

        /* Body lock when mobile menu is open */
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* ========== HERO SECTION - THIN VERSION ========== */
        .hero-section {
            margin-top: 150px;
            background: var(--gradient-primary);
            color: #fff;
            padding: 40px 0 30px;
            position: relative;
            text-align: center;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 500;
        }

        .breadcrumb a {
            color: #fff;
            text-decoration: none;
            opacity: .8;
            transition: opacity 0.3s ease;
        }

        .breadcrumb a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .hero-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-bottom: 0.1em;
        }

        /* Section Styling */
        .section-tag {
            display: inline-block;
            padding: .5rem 1.5rem;
            background: var(--light-gold);
            color: var(--primary-maroon);
            border-radius: 30px;
            font-size: .875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        /* ========== MAIN CONTENT SECTION ========== */
        .main-content {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--bg-light) 0%, #f0f6ff 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-top: 1rem;
        }

        /* ========== CONTENT SECTIONS ========== */
        .content-section {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(125, 21, 56, 0.08);
            border: 1px solid rgba(125, 21, 56, 0.1);
            margin-bottom: 3rem;
        }

        .content-section-header {
            background: var(--gradient-primary);
            color: #fff;
            padding: 2.5rem 2rem;
            text-align: center;
        }

        .content-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .content-section-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .content-section-body {
            padding: 2.5rem 2rem;
            background: #fff;
        }

        /* Who Should Attend Styles */
        .attendance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }

        .attendance-card {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 2rem;
            border: 2px solid rgba(125, 21, 56, 0.1);
            transition: all 0.3s ease;
            text-align: center;

            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(125, 21, 56, 0.15);
            border-color: var(--accent-gold);
        }

        /* .attendance-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(125, 21, 56, 0.15);
            border-color: var(--accent-gold);
        } */

        .attendance-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 0.5rem;
        }

        .attendance-subtitle {
            font-size: 0.9rem;
            color: var(--secondary-maroon);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .attendance-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Travel Tips Styles */
        .travel-tips-content {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            border: 2px dashed var(--accent-gold);
            position: relative;
        }

        .travel-tips-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--gradient-primary);
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(125, 21, 56, 0.3);
            cursor: pointer;
            border: none;
            margin-bottom: 1.5rem;
        }

        .download-btn:hover {
            background: linear-gradient(135deg, var(--secondary-maroon) 0%, #c42275 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(125, 21, 56, 0.4);
        }

        .coming-soon-notice {
            background: rgba(125, 21, 56, 0.05);
            border: 1px solid rgba(125, 21, 56, 0.1);
            border-radius: 8px;
            padding: 1rem;
            color: var(--primary-maroon);
            font-weight: 500;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: #fff;
            padding: 30px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-section h4 {
            margin-bottom: 1.5rem;
            color: var(--light-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: .75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
        }

        /* ========== RESPONSIVE BREAKPOINTS ========== */
        @media (max-width: 1024px) {
            .desktop-navigation {
                display: none !important;
            }

            .mobile-navigation {
                display: block;
            }

            .hero-section {
                margin-top: 135px;
                padding: 35px 0 25px;
            }

            .top-bar-info {
                display: none;
            }

            .top-bar-brand {
                font-size: 1rem;
            }

            .top-bar-brand span {
                display: none;
            }

            .attendance-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                height: 60px;
            }

            .top-bar.scrolled {
                height: 50px;
            }

            .mobile-navigation {
                top: 60px;
                height: 60px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 50px;
            }

            .hero-section {
                margin-top: 120px;
                padding: 30px 0 20px;
            }

            .hero-title {
                font-size: 1.8rem;
                margin-bottom: 0.3rem;
            }

            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
                margin-bottom: 0.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .content-section-header {
                padding: 2rem 1.5rem;
            }

            .content-section-body {
                padding: 2rem 1.5rem;
            }

            .content-section-title {
                font-size: 1.6rem;
            }

            .main-content {
                padding: 40px 0;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                height: 55px;
            }

            .top-bar.scrolled {
                height: 45px;
            }

            .mobile-navigation {
                top: 55px;
                height: 55px;
            }

            .top-bar.scrolled~.mobile-navigation {
                top: 45px;
            }

            .hero-section {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .hero-title {
                font-size: 1.6rem;
                line-height: 1.1;
            }

            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.3rem 0.7rem;
                margin-bottom: 0.6rem;
            }

            .mobile-brand-text {
                font-size: 1rem;
            }

            .mobile-menu-btn {
                width: 45px;
                height: 45px;
            }

            .content-section-header {
                padding: 1.5rem 1rem;
            }

            .content-section-body {
                padding: 1.5rem 1rem;
            }

            .content-section-title {
                font-size: 1.4rem;
            }

            .attendance-card {
                padding: 1.5rem;
            }

            .travel-tips-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 360px) {
            .top-bar-container {
                padding: 0.5rem 0.75rem;
            }

            .top-bar-brand {
                gap: 0.5rem;
            }
        }

        /* Desktop Footer Layout */
        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            /* Desktop: 4 columns */
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        /* Tablet Layout */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                /* Tablet: 2 columns */
                gap: 2.5rem;
                padding: 0 1.5rem;
            }
        }

        /* Mobile Layout */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                /* Mobile: 1 column */
                gap: 2rem;
                padding: 0 1.5rem;
                text-align: center;
                /* Center align on mobile */
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
                /* More prominent on mobile */
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
                /* Center links on mobile */
            }

            .footer-links li {
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.9);
                /* Slightly brighter on mobile */
                font-size: 0.95rem;
                padding: 0.3rem 0;
                display: block;
                transition: all 0.3s ease;
            }

            .footer-links a:hover {
                color: var(--accent-gold);
                transform: translateY(-1px);
            }
        }

        /* Small Mobile Layout */
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 1rem;
                gap: 1.5rem;
            }

            .footer-section {
                padding: 1rem 0;
            }

            .footer-section h4 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }
        }

        /* ========== IMPROVED FOOTER BOTTOM FOR MOBILE ========== */

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            /* Increased padding */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
            /* Limit width for readability */
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* Mobile Footer Bottom */
        @media (max-width: 768px) {
            .footer-bottom {
                padding: 1.5rem 1.5rem;
                gap: 1.2rem;
            }

            .footer-bottom p {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            .footer-bottom img {
                width: 80px;
                /* Smaller on mobile */
                height: 32px;
            }
        }

        @media (max-width: 480px) {
            .footer-bottom {
                padding: 1.2rem 1rem;
                gap: 1rem;
            }

            .footer-bottom p {
                font-size: 0.8rem;
            }

            .footer-bottom img {
                width: 70px;
                /* Even smaller on small mobile */
                height: 28px;
            }
        }


        /* Desktop Footer Layout */
        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            /* Desktop: 4 columns */
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        /* Tablet Layout */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                /* Tablet: 2 columns */
                gap: 2.5rem;
                padding: 0 1.5rem;
            }
        }

        /* Mobile Layout */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                /* Mobile: 1 column */
                gap: 2rem;
                padding: 0 1.5rem;
                text-align: center;
                /* Center align on mobile */
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
                /* More prominent on mobile */
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
                /* Center links on mobile */
            }

            .footer-links li {
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.9);
                /* Slightly brighter on mobile */
                font-size: 0.95rem;
                padding: 0.3rem 0;
                display: block;
                transition: all 0.3s ease;
            }

            .footer-links a:hover {
                color: var(--accent-gold);
                transform: translateY(-1px);
            }
        }

        /* Small Mobile Layout */
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 1rem;
                gap: 1.5rem;
            }

            .footer-section {
                padding: 1rem 0;
            }

            .footer-section h4 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }
        }

        /* ========== IMPROVED FOOTER BOTTOM FOR MOBILE ========== */

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            /* Increased padding */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
            /* Limit width for readability */
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* Mobile Footer Bottom */
        @media (max-width: 768px) {
            .footer-bottom {
                padding: 1.5rem 1.5rem;
                gap: 1.2rem;
            }

            .footer-bottom p {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            .footer-bottom img {
                width: 80px;
                /* Smaller on mobile */
                height: 32px;
            }
        }

        @media (max-width: 480px) {
            .footer-bottom {
                padding: 1.2rem 1rem;
                gap: 1rem;
            }

            .footer-bottom p {
                font-size: 0.8rem;
            }

            .footer-bottom img {
                width: 70px;
                /* Even smaller on small mobile */
                height: 28px;
            }
        }

        /* ========== ENHANCED ABOUT SECTION FOR BETTER READABILITY ========== */

        .about-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .about-main-text {
            font-size: 1.1rem;
            /* Slightly reduced from 1.16rem */
            color: #444;
            line-height: 1.7;
            /* Improved line height */
            margin: 0 auto;
            max-width: 800px;
            text-align: justify;
        }

        .about-main-text p {
            margin-bottom: 1.2rem;
        }

        /* Mobile About Section */
        @media (max-width: 768px) {
            .about-content {
                padding: 2rem 1.5rem;
                /* Reduced padding on mobile */
                margin: 0 1rem;
                /* Add margin for breathing room */
            }

            .about-main-text {
                font-size: 1rem;
                text-align: left;
                /* Left align on mobile for better readability */
                line-height: 1.6;
            }

            .about-header {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .about-content {
                padding: 1.5rem 1rem;
                margin: 0 0.5rem;
            }

            .about-main-text {
                font-size: 0.95rem;
            }

            .about-main-text p {
                margin-bottom: 1rem;
            }
        }




        /* ========== TWO-ROW NAVIGATION ON MEDIUM-LARGE SCREENS ========== */
        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* push hero down under two rows */
            .hero-section {
                margin-top: calc(70px + 2 * 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 80px);
            }
        }

        /* ========== SINGLE-ROW NAVIGATION ON XL SCREENS ========== */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                display: flex;
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* restore original hero offset */
            .hero-section {
                margin-top: 150px;
                /* 70px top-bar + 80px nav */
            }

            .top-bar.scrolled~.hero-section {
                margin-top: 140px;
                /* 60px scrolled top-bar + 80px nav */
            }
        }

        @media (min-width: 1025px) and (max-width: 1800px) {
            .desktop-navigation {
                height: auto !important;
                padding: 1rem 0;
            }

            .desktop-nav-container {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 2rem;
            }

            .nav-menu-section {
                flex-basis: 100%;
                margin-top: 0.5rem;
            }

            .nav-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }



        }

        /* ========== SINGLE-ROW NAVIGATION ON XL SCREENS ========== */
        @media (min-width: 1801px) {
            .desktop-navigation {
                height: 80px !important;
                padding: 1rem 2rem !important;
            }

            .desktop-nav-container {
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 3rem;
            }

            .nav-menu-section {
                flex-basis: auto;
                margin-top: 0;
            }

            .nav-menu {
                display: flex;
                flex-wrap: nowrap;
                gap: 2rem;
            }

            .nav-item {
                flex: 0 0 auto;
            }

            /* restore original hero offset */
            .hero-section {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 80px);
            }
        }

        @media (min-width: 1025px) and (max-width: 1800px) {

            /* if each nav row is roughly 90px tall… */
            .hero-section {
                margin-top: calc(70px + 2 * 90px);
                /* 70px top-bar + two 90px nav rows */
            }

            .top-bar.scrolled~.hero-section {
                margin-top: calc(60px + 2 * 90px);
                /* 60px scrolled top-bar + two rows */
            }
        }


        .footer-content {
            max-width: 1200px;
            margin: 0 auto 3rem auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            flex: 1 1 220px;
            min-width: 220px;
            max-width: 340px;
        }

        @media (max-width: 1024px) {
            .footer-content {
                flex-direction: row;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }

            .footer-section {
                min-width: 180px;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
                padding: 0 1rem;
                text-align: center;
            }

            .footer-section {
                min-width: 0;
                max-width: 100%;
                padding: 1.2rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }
        }

        /* ========== MAIN CONTENT SECTION - MARGIN-TOP FOLLOWS HERO SECTION BEHAVIOR ========== */
        .main-content {
            margin-top: 150px;
            padding: 60px 0;
            background: linear-gradient(135deg, var(--bg-light) 0%, #f0f6ff 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .top-bar.scrolled~.main-content {
            margin-top: 140px;
        }

        @media (min-width: 1025px) and (max-width: 1800px) {
            .main-content {
                margin-top: calc(70px + 2 * 90px);
            }

            .top-bar.scrolled~.main-content {
                margin-top: calc(60px + 2 * 90px);
            }
        }

        @media (min-width: 1801px) {
            .main-content {
                margin-top: calc(70px + 80px);
            }

            .top-bar.scrolled~.main-content {
                margin-top: calc(60px + 80px);
            }
        }

        @media (max-width: 1024px) {
            .main-content {
                margin-top: 135px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 125px;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                margin-top: 120px;
                padding: 40px 0;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 110px;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                margin-top: 110px;
                padding: 25px 0 15px;
            }

            .top-bar.scrolled~.main-content {
                margin-top: 100px;
            }
        }

        @media (max-width: 360px) {
            .main-content {
                margin-top: 100px;
            }
        }


        .section-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 4rem;
            padding: 0 2rem;
        }

        .section-tag {
            display: inline-block;
            padding: .5rem 1.5rem;
            background: var(--light-gold);
            color: var(--primary-maroon);
            border-radius: 30px;
            font-size: .875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {


            .section-title {
                font-size: 1.8rem;
            }
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
            line-height: 1.2;
        }


        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            min-width: 0;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }

        .footer-section h4 {
            margin-bottom: 1.2rem;
            color: var(--light-gold);
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color .3s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding: 1.5rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            line-height: 1.5;
            max-width: 600px;
        }

        .footer-bottom img {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-bottom img:hover {
            opacity: 1;
        }

        /* Responsive Breakpoints for Footer */

        /* Tablet and below */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }
        }

        /* Mobile specific */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1.5rem;
                text-align: center;
            }

            .footer-section {
                padding: 1.5rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-section:last-child {
                border-bottom: none;
            }

            .footer-section h4 {
                margin-bottom: 1rem;
                font-size: 1.1rem;
                color: var(--accent-gold);
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 0.3rem;
                gap: 0.6rem;
                margin-bottom: 0.4rem;
            }

            .footer-section h4 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                font-size: 0.88rem;
            }
        }

        @media (min-width: 900px) {
            .venue-map-label {
                padding-top: 15px !important;
            }
        }

        #mapModal {
            display: none;
            position: fixed;
            z-index: 3000;
            /* <-- higher than top-bar/navigation */
            left: 0;
            top: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.85);
            align-items: center;
            justify-content: center;
        }


        .visa-panel {
            max-width: 920px;
            margin: 1.5rem auto;
            background: linear-gradient(180deg, rgba(244, 228, 193, 0.65) 0%, rgba(250, 248, 245, 0.9) 100%);
            border: 1px solid rgba(212, 175, 55, 0.22);
            border-radius: 14px;
            box-shadow: 0 10px 30px rgba(125, 21, 56, 0.07);
            padding: 1.6rem 1.8rem;
            display: block;
            line-height: 1.85;
        }

        /* Inner content spacing and typography */
        .visa-panel .visa-content {
            color: var(--text-dark);
            font-size: 1.06rem;
            text-align: justify;
        }

        /* Highlighted callout style for the timing sentence (keeps exact wording intact) */
        .visa-panel .visa-deadline {
            margin: 1rem 0;
            padding: 0.9rem 1rem;
            background: rgba(255, 255, 255, 0.95);
            border-left: 4px solid var(--accent-gold);
            border-radius: 8px;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Links */
        .visa-panel a {
            color: var(--secondary-maroon);
            font-weight: 600;
            text-decoration: underline;
        }

        /* Responsive tweaks */
        @media (max-width: 680px) {
            .visa-panel {
                padding: 1.2rem 1.1rem;
                margin: 1rem;
            }

            .visa-panel .visa-content {
                font-size: 1rem;
                /* text-align: justify; */
            }
        }

        .visa-panel .visa-deadline {
            margin: 1rem 0;
            padding: 1rem 1.25rem;
            background: linear-gradient(90deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 247, 236, 0.95) 100%);
            border-left: 6px solid var(--primary-maroon);
            border-radius: 10px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.03rem;
            line-height: 1.5;
            box-shadow: 0 8px 24px rgba(125, 21, 56, 0.07);
            transition: transform 180ms ease, box-shadow 180ms ease;
            will-change: transform;
        }



        /* touch-friendly press state */
        .visa-panel .visa-deadline:active {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(125, 21, 56, 0.08);
        }

        /* responsive tweaks */
        @media (max-width: 680px) {
            .visa-panel .visa-deadline {
                padding: 0.9rem 1rem;
                font-size: 1rem;
            }
        }

        .mobile-submenu.active {
            max-height: 400px;
            /* Increased to accommodate 5 items */
        }

        /* Force stacked layout for logistical note on all screens */
.logistics-download-section { 
  grid-template-columns: 1fr !important; 
  justify-items: center; 
}
.logistics-text-box { 
  align-items: center !important; 
  text-align: center !important; 
  padding-left: 0 !important; 
}