* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    :root {
        --primary: #2563eb;
        --secondary: #0F52BA;
        --accent: #60a5fa;
        --dark: #0f172a;
        --gray-900: #1e293b;
        --gray-700: #334155;
        --gray-500: #64748b;
        --gray-300: #cbd5e1;
        --gray-100: #f1f5f9;
        --white: #ffffff;
        --orange: #f97316;
        --yellow: #fbbf24;
    }

    body {
        background: var(--white);
        color: var(--gray-900);
        scroll-behavior: smooth;
        font-size: 15px;
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    /* Header - Same as index */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: transparent;
        transition: all 0.3s ease;
        padding: 1rem 0;
    }

    header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .header-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 40px;
        transition: all 0.3s ease;
        filter: brightness(0) invert(1);
    }

    header.scrolled .logo img {
        filter: none;
        height: 36px;
    }

    #nav-menu {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    #nav-menu a {
        color: var(--white);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s ease;
        position: relative;
    }

    header.scrolled #nav-menu a {
        color: var(--gray-700);
    }

    #nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    header.scrolled #nav-menu a:hover {
        background: var(--gray-100);
        color: var(--primary);
    }

    #nav-menu a.active {
        background: var(--white);
        color: var(--primary);
    }

    header.scrolled #nav-menu a.active {
        background: var(--primary);
        color: var(--white);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 0.5rem;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

.close-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--gray-900);
    transition: all 0.3s ease;
}

/* Hover animations */
.hamburger:hover .bar {
    background: #ef4444 !important;
    transform: scaleX(1.15);
}

.hamburger:hover .close-icon {
    color: #ef4444 !important;
    transform: rotate(90deg);
}

.hamburger.active .bar {
    display: none !important;
}

.hamburger.active .close-icon {
    display: block !important;
}

    header.scrolled .hamburger span {
        background: var(--gray-900);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .desktop-user {
        font-size: 1.9rem;
        color: var(--white);
        display: flex;
        align-items: center;
    }
    .guest-popup {
        position: absolute;
        top: 70px;
        right: 2rem;
        background: var(--white);
        padding: 0.75rem 1rem;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--gray-900);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.25s ease;
        z-index: 9999;
    }
    .guest-popup.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    header.scrolled .desktop-user {
        color: var(--gray-900);
    }

    .mobile-user {
        display: none;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        font-size: 1rem;
        font-weight: 600;
        border-top: 1px solid var(--gray-100);
        color: var(--gray-900);
    }

    .mobile-user i {
        margin-right: 0.5rem;
    }

    /* Hero Section */
    .hero-about {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: url('../img/IMG_6221.jpg') center/cover no-repeat;
        background-attachment: fixed;
    }

    .hero-about::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, 
            rgba(0, 0, 0, 0) 0%, 
            rgba(0, 0, 0, 0.3) 25%, 
            rgba(15, 23, 42, 0.92) 60%,
            rgba(15, 23, 42, 0.95) 100%
        );
        z-index: 1;
    }

    .hero-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        max-width: 600px;
        animation: fadeInUp 0.8s ease;
    }

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .hero-content p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        cursor: pointer;
        background: var(--white);
        color: var(--black);
    }

    .btn:hover {
        background: var(--orange);
        color: var(--dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
    }

    /* Content Sections */
    .section {
        padding: 4rem 2rem;
    }

    .section-container {
        max-width: 1280px;
        margin: 0 auto;
    }

    .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .content-text h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
        position: relative;
        padding-bottom: 1rem;
    }

    .content-text h2::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 3px;
        background: var(--primary);
        border-radius: 2px;
    }

    .content-text p {
        font-size: 0.95rem;
        color: var(--gray-500);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .content-text ul {
        margin-left: 1.5rem;
        margin-top: 1rem;
    }

    .content-text ul li {
        font-size: 0.95rem;
        color: var(--gray-500);
        line-height: 1.8;
        margin-bottom: 0.5rem;
    }

    .content-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .content-image img:hover {
        transform: scale(1.02);
    }

    /* Award Section */
    .award-section {
        background: var(--gray-100);
        padding: 4rem 2rem;
    }

    .award-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .award-carousel {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .award-carousel img {
        width: 100%;
        height: auto;
        display: block;
        transition: opacity 0.5s ease;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--gray-300);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: var(--primary);
        width: 24px;
        border-radius: 5px;
    }

    .toggle-btn {
        background: var(--primary);
        color: var(--white);
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .toggle-btn:hover {
        background: var(--orange);
        color: var(--dark);
        transform: translateY(-2px);
    }

    .arrow-icon {
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .arrow-icon.rotate {
        transform: rotate(180deg);
    }

    /* Gallery Container */
    .gallery-container {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.5s ease;
        margin-top: 2rem;
    }

    .gallery-container.active {
        max-height: 2000px;
        opacity: 1;
    }

    .gallery-title {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 2rem;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .gallery-card {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .gallery-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .gallery-card img {
        width: 100%;
        aspect-ratio: 5/4;
        object-fit: contain;
        background: #fafafa;
    }

    .gallery-info {
        padding: 1.5rem;
        text-align: center;
    }

    .gallery-info h4 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--gray-900);
        margin-bottom: 0.5rem;
    }

    .gallery-info .issuer {
        font-size: 0.85rem;
        color: var(--gray-500);
        margin-bottom: 0.5rem;
    }

    .gallery-info .recipient {
        font-size: 0.9rem;
        color: var(--gray-700);
        font-weight: 500;
    }

    /* Footer - REDESIGNED */
    footer {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        color: rgba(255, 255, 255, 0.9);
        padding: 3rem 2rem 1.5rem;
        position: relative;
        overflow: hidden;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    .footer-main {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 200px 1fr auto;
        gap: 3rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .footer-logo img {
        height: 50px;
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
    }

    .footer-logo img:hover {
        transform: scale(1.05);
    }

    .footer-nav {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-nav a {
        color: var(--white);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        padding: 0.25rem 0;
        position: relative;
    }

    .footer-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--white);
    }

    .footer-nav a:hover::after {
        width: 100%;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        color: var(--white);
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .footer-social a:hover {
        background: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    }

    .footer-bottom {
        max-width: 1280px;
        margin: 0 auto;
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.85rem;
    }

    .footer-bottom p {
        margin: 0;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .fade-in.appear {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-about {
            background-attachment: scroll;
            min-height: 80vh;
        }

        .hero-about::before {
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(15, 23, 42, 0.75) 50%,
                rgba(15, 23, 42, 0.90) 100%
            );
        }

        .hero-container {
            justify-content: center;
            padding: 0 3rem;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1.25rem;
        }

        .hero-content p {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .btn {
            padding: 0.85rem 1.75rem;
            font-size: 15px;
        }

        .footer-main {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-logo {
            display: flex;
            justify-content: center;
        }

        .footer-nav {
            justify-content: center;
        }

        .footer-social {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .hamburger {
            display: flex;
            position: fixed;
            top: 1rem;
            right: 1.2rem;
            z-index: 1100;
        }

.close-icon {
    color: var(--gray-900);
    font-size: 2rem;
}

/* Mobile active press effect */
.hamburger:active .bar,
.hamburger:active .close-icon {
    color: #ef4444 !important;
    background: #ef4444 !important;
    transform: scale(1.2);
}

        #nav-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--white);
            flex-direction: column;
            justify-content: center;
            gap: 0;
            padding: 2rem;
        }

        #nav-menu.active {
            display: flex;
        }

        #nav-menu a {
            width: 100%;
            padding: 1rem;
            text-align: center;
            color: var(--gray-900);
            border-bottom: 1px solid var(--gray-100);
        }

        #nav-menu a:hover {
            background: var(--gray-100);
        }

        #nav-menu a.active {
            background: var(--primary);
            color: var(--white);
        }

        .desktop-user {
            display: none !important;
        }

        .mobile-user {
            display: block;
        }

        .footer-nav {
            flex-direction: column;
            gap: 1rem;
        }

        .footer-nav a {
            font-size: 0.9rem;
        }

        /* Hero Mobile Optimization */
        .hero-about {
            min-height: 75vh;
            display: flex;
            align-items: center;
            padding: 6rem 0 4rem;
        }

        .hero-about::before {
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.3) 0%, 
                rgba(15, 23, 42, 0.85) 40%,
                rgba(15, 23, 42, 0.93) 100%
            );
        }

        .hero-container {
            justify-content: center;
            padding: 0 2rem;
        }

        .hero-content {
            text-align: center;
            max-width: 100%;
        }

        .hero-content h1 {
            font-size: 2rem;
            margin-bottom: 1.25rem;
            line-height: 1.3;
        }

        .hero-content p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .hero-content p:last-of-type {
            margin-bottom: 2rem;
        }

        .btn {
            padding: 0.85rem 2rem;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
        }

        /* Content Sections Mobile */
        .section {
            padding: 3.5rem 1.5rem;
        }

        .content-grid,
        .award-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .content-text h2 {
            font-size: 1.65rem;
            text-align: center;
            margin-bottom: 1.25rem;
        }

        .content-text h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .content-text p {
            font-size: 0.95rem;
            line-height: 1.75;
            text-align: center;
        }

        .content-text ul {
            text-align: left;
            margin-left: 1.5rem;
            margin-top: 1.25rem;
        }

        .content-text ul li {
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 0.75rem;
        }

        .toggle-btn {
            width: 100%;
            justify-content: center;
            padding: 0.85rem 1.5rem;
        }

        .gallery-title {
            font-size: 1.35rem;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .footer-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
    }

    @media (max-width: 480px) {
        .header-container {
            padding: 0 1rem;
        }

        /* Hero Small Mobile */
        .hero-about {
            min-height: 65vh;
            padding: 5rem 0 3rem;
        }

        .hero-about::before {
            background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.4) 0%, 
                rgba(15, 23, 42, 0.88) 35%,
                rgba(15, 23, 42, 0.95) 100%
            );
        }

        .hero-container {
            padding: 0 1.5rem;
        }

        .hero-content h1 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .hero-content p {
            font-size: 0.88rem;
            line-height: 1.65;
            margin-bottom: 0.85rem;
        }

        .hero-content p:last-of-type {
            margin-bottom: 1.75rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            font-size: 13px;
            min-width: 180px;
        }

        /* Content Sections Small Mobile */
        .section {
            padding: 3rem 1.25rem;
        }

        .content-text h2 {
            font-size: 1.35rem;
            margin-bottom: 1rem;
        }

        .content-text p {
            font-size: 0.88rem;
            line-height: 1.7;
        }

        .content-text ul {
            margin-left: 1.25rem;
        }

        .content-text ul li {
            font-size: 0.85rem;
            margin-bottom: 0.65rem;
        }

        .toggle-btn {
            padding: 0.75rem 1.25rem;
            font-size: 13px;
        }

        .gallery-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .gallery-info {
            padding: 1.25rem;
        }

        .gallery-info h4 {
            font-size: 0.92rem;
        }

        .gallery-info .issuer {
            font-size: 0.8rem;
        }

        .gallery-info .recipient {
            font-size: 0.85rem;
        }

        footer {
            padding: 2rem 1rem 1rem;
        }

        .footer-logo img {
            height: 40px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            font-size: 1rem;
        }
    }