        /* CSS RESET & VARIABLES */
        :root {
            --primary: #009340;
            --primary-dark: #007030;
            --primary-light: #e6f4ea;
            --secondary: #e6b800;
            --secondary-light: #fffbeb;
            --dark: #1b4332;
            --dark-gray: #4a5568;
            --light-gray: #f7fafc;
            --border-color: #e2e8f0;
            --white: #ffffff;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
            --font-primary: 'Be Vietnam Pro', sans-serif;
            --font-title: 'Be Vietnam Pro', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            color: var(--dark);
            background-color: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
            /* Cải thiện độ nét của chữ trên màn hình Retina */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            /* Tăng chất lượng render ảnh trên màn hình Retina/HiDPI */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        /* UTILITIES */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 6rem 0;
        }

        .section-bg {
            background-color: var(--light-gray);
        }

        .section-title {
            font-family: var(--font-title);
            font-size: 2.25rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3.5rem;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            margin: 0.75rem auto 0;
            border-radius: 2px;
        }

        .text-primary {
            color: var(--primary);
        }

        /* Section eyebrow label */
        .section-eyebrow {
            display: block;
            text-align: center;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }

        /* Section subtitle */
        .section-subtitle {
            text-align: center;
            color: var(--dark-gray);
            font-size: 1.05rem;
            max-width: 680px;
            margin: -2rem auto 3rem;
            line-height: 1.65;
            word-break: keep-all;
        }

        /* ---- STATS BAR ---- */
        .stats-bar {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
            padding: 2.75rem 0;
            border-top: 3px solid var(--secondary);
            border-bottom: 3px solid var(--secondary);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
            align-items: center;
            gap: 0;
        }

        .stat-item {
            text-align: center;
            padding: 0 1.5rem;
        }

        .stat-number {
            font-family: var(--font-title);
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary);
            line-height: 1.1;
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.25rem;
        }

        .stat-unit {
            font-size: 1rem;
            font-weight: 700;
            color: rgba(255,255,255,0.7);
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.75);
            margin-top: 0.4rem;
            font-weight: 500;
            line-height: 1.4;
        }

        .stat-divider {
            width: 1px;
            height: 60px;
            background: rgba(255,255,255,0.15);
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .stat-divider {
                display: none;
            }
            .stat-number {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.25rem;
            }
            .stat-number {
                font-size: 1.6rem;
            }
        }

        /* ---- BENEFIT CARDS (redesigned) ---- */
        .benefit-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .benefit-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.25rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: var(--transition);
        }

        .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .benefit-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            transition: var(--transition);
        }

        .benefit-icon-svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
        }

        .benefit-card:hover .benefit-card-icon {
            background: var(--primary);
        }

        .benefit-card:hover .benefit-icon-svg {
            color: var(--white);
        }

        .benefit-card-title {
            font-family: var(--font-title);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.75rem;
            line-height: 1.35;
            word-break: keep-all;
        }

        .benefit-card-desc {
            font-size: 0.9rem;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* Infographic block */
        .benefit-infographic {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }

        .benefit-infographic-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--dark-gray);
            border-bottom: 1px solid var(--border-color);
            background: var(--light-gray);
        }

        .benefit-infographic-label svg {
            color: var(--primary);
            flex-shrink: 0;
        }

        .benefit-infographic-img {
            width: 100%;
            height: auto;
            display: block;
            cursor: zoom-in;
            transition: var(--transition);
        }

        .benefit-infographic-img:hover {
            opacity: 0.95;
            transform: scale(1.005);
        }

        @media (max-width: 1024px) {
            .benefit-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 600px) {
            .benefit-cards-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ---- CONDITIONS REDESIGN ---- */
        .conditions-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: start;
        }

        .conditions-group-title {
            font-family: var(--font-title);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .conditions-group-icon {
            font-size: 1.3rem;
        }

        .criteria-cards-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .criteria-card {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            background: var(--white);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .criteria-card:hover {
            border-color: var(--primary);
            transform: translateX(4px);
        }

        .criteria-number {
            font-family: var(--font-title);
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-light);
            line-height: 1;
            min-width: 44px;
            -webkit-text-stroke: 2px var(--primary);
        }

        .criteria-title {
            font-family: var(--font-title);
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.35rem;
        }

        .criteria-desc {
            font-size: 0.9rem;
            color: var(--dark-gray);
            line-height: 1.55;
        }

        .lang-groups {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .lang-group {
            background: var(--white);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            border: 2px solid var(--border-color);
            transition: var(--transition);
        }

        .lang-group--active {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .lang-group-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.975rem;
            color: var(--dark);
        }

        .lang-group-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--dark-gray);
            flex-shrink: 0;
        }

        .lang-group--active .lang-group-dot {
            background: var(--primary);
        }

        .lang-group--active .lang-group-header {
            color: var(--primary-dark);
        }

        .lang-group-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            padding-left: 1.5rem;
        }

        .lang-group-list li {
            font-size: 0.875rem;
            color: var(--dark-gray);
            line-height: 1.55;
            position: relative;
        }

        .lang-group-list li::before {
            content: '✓';
            position: absolute;
            left: -1.25rem;
            color: var(--primary);
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .conditions-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }



        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            font-family: var(--font-title);
            font-size: 1.05rem;
            font-weight: 700;
            border-radius: 9999px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            box-shadow: 0 10px 20px rgba(0, 147, 64, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 25px rgba(0, 147, 64, 0.3);
            filter: brightness(1.1);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--dark);
            box-shadow: 0 10px 20px rgba(230, 184, 0, 0.2);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 25px rgba(230, 184, 0, 0.3);
            background-color: #ffd000;
        }

        /* TOPBAR */
        .topbar {
            background-color: var(--dark);
            color: rgba(255,255,255,0.85);
            font-size: 0.8rem;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid var(--primary);
            position: relative;
            z-index: 1001;
        }

        .topbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            height: auto;
        }

        .topbar-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .topbar-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .topbar-item {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            white-space: nowrap;
        }

        .topbar-item svg {
            color: var(--secondary);
            flex-shrink: 0;
        }

        .topbar-link {
            color: var(--secondary);
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
        }

        .topbar-link:hover {
            color: #fff;
        }

        .topbar-divider {
            color: rgba(255,255,255,0.25);
        }

        .topbar-counselor strong {
            color: var(--secondary);
        }

        @media (max-width: 768px) {
            .topbar .container {
                flex-direction: column;
                gap: 0.4rem;
                align-items: center;
                text-align: center;
            }
            .topbar-left {
                justify-content: center;
                width: 100%;
            }
            .topbar-right {
                display: flex;
                justify-content: center;
                width: 100%;
            }
            .topbar-divider:last-of-type {
                display: none;
            }
        }
        @media (max-width: 480px) {
            .topbar {
                font-size: 0.72rem;
                padding: 0.6rem 0;
            }
            .topbar-left {
                flex-direction: column;
                gap: 0.35rem;
                align-items: center;
                width: 100%;
            }
            .topbar-divider {
                display: none;
            }
            .topbar-right {
                margin-top: 0.15rem;
            }
        }

        /* HEADER WRAPPER */
        .main-header-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }

        /* HEADER */
        .header {
            background-color: rgba(255, 255, 255, 0.95);
            position: relative;
            width: 100%;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            height: 60px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--primary-dark);
            line-height: 1.2;
        }

        .logo-subtitle {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--dark-gray);
            font-weight: 600;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--dark-gray);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            border: none;
            background: none;
            padding: 0.5rem;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 5px 0;
            border-radius: 2px;
            transition: var(--transition);
        }

        /* Animate hamburger → X when menu is open */
        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Header CTA – full-width on mobile inside open nav */
        @media (max-width: 768px) {
            .header-cta {
                display: block;
                width: 100%;
                text-align: center;
                margin-top: 1rem;
                padding: 0.875rem 1.5rem !important;
                font-size: 1rem !important;
                border-radius: 12px !important;
            }
        }

        /* HERO SECTION */
        .hero {
            padding-top: 176px; /* topbar(40px) + header(80px) + buffer */
            padding-bottom: 6rem;
            background: radial-gradient(circle at 10% 20%, rgba(230, 244, 234, 0.6) 0%, rgba(255, 255, 255, 0.9) 90%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background-color: rgba(0, 147, 64, 0.03);
            z-index: 0;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 650px;
        }

        .hero-badge {
            background-color: var(--primary-light);
            color: var(--primary-dark);
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 0.875rem;
            padding: 0.5rem 1.25rem;
            border-radius: 9999px;
            display: inline-block;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(0, 147, 64, 0.15);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-family: var(--font-title);
            font-size: 3.25rem;
            font-weight: 900;
            line-height: 1.2;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--dark-gray);
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 1.25rem;
            align-items: center;
        }

        .hero-image-wrapper {
            position: relative;
        }

        .hero-image-container {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
            border: 6px solid var(--white);
        }

        .hero-image {
            width: 100%;
            height: auto;
            aspect-ratio: 1704 / 956;
            object-fit: cover;
            display: block;
            transition: var(--transition);
            image-rendering: -webkit-optimize-contrast;
        }

        .hero-image-container:hover .hero-image {
            transform: scale(1.03);
        }

        .hero-float-card {
            position: absolute;
            bottom: -25px;
            left: -25px;
            background-color: var(--white);
            padding: 1.25rem 1.75rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 10;
        }

        .hero-float-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--secondary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.5rem;
        }

        .hero-float-text {
            display: flex;
            flex-direction: column;
        }

        .hero-float-num {
            font-family: var(--font-title);
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.1;
        }

        .hero-float-desc {
            font-size: 0.75rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        /* VALUES / DIFFERENCES */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .value-card {
            background-color: var(--white);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 0, 0, 0.02);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 2rem;
            transition: var(--transition);
        }

        .value-card:hover .value-icon {
            background-color: var(--primary);
            color: var(--white);
            transform: rotate(5deg);
        }

        .value-title {
            font-family: var(--font-title);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .value-desc {
            color: var(--dark-gray);
            font-size: 0.975rem;
            line-height: 1.6;
        }

        /* ABOUT SECTION */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image {
            width: 100%;
            height: 420px;          /* Chiều cao cố định, không dùng aspect-ratio */
            object-fit: cover;
            object-position: center center;
            image-rendering: -webkit-optimize-contrast;
        }

        .about-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--dark);
            color: var(--white);
            padding: 0.4rem 1rem;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 8px;
            text-transform: uppercase;
        }

        .about-title {
            font-family: var(--font-title);
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .about-text {
            color: var(--dark-gray);
            font-size: 1.025rem;
            margin-bottom: 2rem;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .partner-card {
            background-color: var(--light-gray);
            padding: 1.5rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .partner-name {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--primary-dark);
        }

        .partner-desc {
            font-size: 0.875rem;
            color: var(--dark-gray);
        }

        /* DETAILED INFO & ACCORDION */
        .info-tab-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .info-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1rem;
        }

        .tab-btn {
            background: none;
            border: none;
            padding: 0.75rem 2rem;
            font-family: var(--font-title);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-gray);
            cursor: pointer;
            border-radius: 12px;
            transition: var(--transition);
        }

        .tab-btn:hover {
            color: var(--primary);
            background-color: var(--light-gray);
        }

        .tab-btn.active {
            color: var(--white);
            background-color: var(--primary);
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        .info-card-layout {
            background-color: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1.4fr; /* cho cột ảnh rộng hơn để hiển thị gần với độ phân giải gốc */
        }

        .info-card-text {
            padding: 3rem;
        }

        .info-card-image-container {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 520px;     /* tăng chiều cao để ảnh render gần với kích thước gốc hơn */
            background-color: #fff;
            padding: 1rem;         /* padding nhỏ để tránh sát viền */
        }

        .info-card-image {
            width: 100%;           /* ảnh chiếm toàn bộ chiều rộng cột → gần phân giải gốc hơn */
            height: 100%;
            object-fit: contain;   /* giữ nguyên tỷ lệ, không cắt xén */
            object-position: center;
            cursor: zoom-in;
            transition: var(--transition);
            /* image-rendering: auto là tốt nhất cho ảnh thực (browser dùng bicubic interpolation) */
            image-rendering: auto;
        }

        .info-card-image:hover {
            transform: scale(1.02);
        }

        .info-list {
            margin-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .info-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .info-item-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .info-item-content strong {
            display: block;
            color: var(--dark);
            font-size: 1.05rem;
            margin-bottom: 0.25rem;
        }

        .info-item-content span {
            color: var(--dark-gray);
            font-size: 0.95rem;
        }

        /* CONDITIONS SECTION */
        .conditions-box {
            background-color: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            padding: 4rem;
            margin-top: 2rem;
        }

        .conditions-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .cond-column-title {
            font-family: var(--font-title);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .cond-column-title svg {
            color: var(--secondary);
        }

        .cond-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .cond-item {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
        }

        .cond-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: #fff9e6;
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .cond-text {
            color: var(--dark-gray);
            font-size: 1rem;
        }

        .cond-text strong {
            color: var(--dark);
        }

        .cond-notice {
            margin-top: 3.5rem;
            background-color: var(--primary-light);
            border-left: 5px solid var(--primary);
            padding: 1.5rem 2rem;
            border-radius: 8px;
            font-size: 0.975rem;
            color: var(--primary-dark);
            font-weight: 500;
        }

        /* TIMELINE SECTION */
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background-color: var(--primary-light);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 2rem 3rem;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        .timeline-dot {
            position: absolute;
            top: 2.5rem;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: var(--white);
            border: 5px solid var(--primary);
            box-shadow: var(--shadow);
            z-index: 1;
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -14px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -14px;
        }

        .timeline-content {
            background-color: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .timeline-item:hover .timeline-content {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .timeline-step {
            font-family: var(--font-title);
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .timeline-time {
            display: inline-block;
            background-color: var(--secondary-light);
            color: #b38600;
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            margin-bottom: 1rem;
        }

        .timeline-title {
            font-family: var(--font-title);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--dark);
            word-break: keep-all;
        }

        .timeline-desc {
            color: var(--dark-gray);
            font-size: 0.95rem;
        }

        /* REGISTRATION FORM SECTION */
        .registration {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .registration::before {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.02);
        }

        .registration .section-title {
            color: var(--white);
        }

        .registration-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .reg-text-content h3 {
            font-family: var(--font-title);
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .reg-text-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
        }

        .reg-contacts {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .reg-contact-card {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.25rem 1.75rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .reg-contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .reg-contact-info span {
            display: block;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .reg-contact-info strong {
            font-family: var(--font-title);
            font-size: 1.15rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .reg-contact-name {
            display: inline-block;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 0.15rem;
        }

        .reg-form-container {
            background-color: var(--white);
            border-radius: 30px;
            padding: 3.5rem;
            box-shadow: var(--shadow-lg);
            color: var(--dark);
        }

        .reg-form-title {
            font-family: var(--font-title);
            font-size: 1.75rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 2rem;
            color: var(--dark);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-full-width {
            grid-column: span 2;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }

        .form-input {
            width: 100%;
            padding: 0.875rem 1.25rem;
            border-radius: 10px;
            border: 1.5px solid var(--border-color);
            font-family: var(--font-primary);
            font-size: 0.95rem;
            transition: var(--transition);
            background-color: var(--light-gray);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            background-color: var(--white);
            box-shadow: 0 0 0 3px rgba(0, 147, 64, 0.1);
        }

        .form-submit-btn {
            width: 100%;
            margin-top: 2rem;
            padding: 1rem;
            font-size: 1.1rem;
            border-radius: 12px;
        }

        /* FLOATING UTILITIES */
        .floating-menu {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 999;
        }

        .float-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .float-btn:hover {
            transform: scale(1.1) translateY(-3px);
        }

        .float-phone {
            background-color: #25d366;
        }

        .float-zalo {
            background-color: #0068ff;
            font-family: var(--font-title);
            font-weight: 900;
            font-size: 1.1rem;
        }

        .float-reg {
            background-color: var(--primary);
        }

        .float-tooltip {
            position: absolute;
            right: 70px;
            background-color: var(--dark);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transform: translateX(10px);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .float-btn:hover .float-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        /* MODALS & LIGHTBOX */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: var(--white);
            border-radius: 30px;
            max-width: 600px;
            width: 100%;
            padding: 3.5rem;
            text-align: center;
            box-shadow: var(--shadow-lg);
            position: relative;
            animation: modalSlide 0.4s ease;
        }

        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-gray);
            transition: var(--transition);
        }

        .modal-close-btn:hover {
            color: var(--primary-dark);
            transform: scale(1.1);
        }

        .success-icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 2rem;
        }

        .modal-title {
            font-family: var(--font-title);
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .modal-desc {
            color: var(--dark-gray);
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        /* Lightbox modal for infographics */
        .lightbox-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 10001;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .lightbox-content-container {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -45px;
            right: 0;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .lightbox-close:hover {
            transform: scale(1.1);
        }

        /* FOOTER */
        .footer {
            background-color: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 5rem 0 2rem;
            border-top: 5px solid var(--primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-logo-area {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo-title {
            color: var(--white);
            font-family: var(--font-title);
            font-weight: 800;
            font-size: 1.4rem;
        }

        .footer-about {
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-links-title {
            color: var(--white);
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 1.75rem;
            position: relative;
        }

        .footer-links-title::after {
            content: '';
            display: block;
            width: 30px;
            height: 2px;
            background-color: var(--secondary);
            margin-top: 0.5rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-link-item a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            font-size: 0.925rem;
        }

        .footer-contact-item {
            display: flex;
            gap: 0.75rem;
        }

        .footer-contact-icon {
            color: var(--secondary);
            flex-shrink: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
        }

        /* NEWS SECTION */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .news-card {
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .news-img-wrapper {
            position: relative;
            padding-top: 60%; /* 5:3 ratio */
            overflow: hidden;
        }

        .news-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .news-card:hover .news-img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .news-meta {
            font-size: 0.85rem;
            color: var(--dark-gray);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .news-title {
            font-family: var(--font-title);
            font-size: 1.15rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 0.75rem;
            color: var(--dark);
        }

        .news-desc {
            color: var(--dark-gray);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .news-link {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: auto;
        }

        .news-link:hover {
            color: var(--primary-dark);
        }

        /* KEYFRAMES */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes modalSlide {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* ============================================================
           RESPONSIVE MEDIA QUERIES — COMPREHENSIVE MOBILE OPTIMIZATION
           ============================================================ */

        /* TABLET: 768px – 1024px */
        @media (max-width: 1024px) {
            .container {
                padding: 0 1.25rem;
            }
            .section {
                padding: 5rem 0;
            }
            .section-title {
                font-size: 1.9rem;
                margin-bottom: 2.75rem;
            }
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            .hero-content {
                max-width: 100%;
                margin: 0 auto;
            }
            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
            .hero-image-wrapper {
                max-width: 480px;
                margin: 0 auto;
            }
            .values-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.75rem;
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .info-card-layout {
                grid-template-columns: 1fr;
            }
            .info-card-image-container {
                min-height: 300px;
            }
            .registration-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .reg-text-content h3 {
                font-size: 1.85rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
            .news-grid {
                grid-template-columns: 1fr 1fr;
            }
            .conditions-box {
                padding: 3rem;
            }
        }

        /* MOBILE: up to 768px */
        @media (max-width: 768px) {
            /* --- BASE --- */
            .container {
                padding: 0 1rem;
            }
            .section {
                padding: 3.5rem 0;
            }
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }

            /* --- HEADER --- */
            .header .container {
                height: 64px;
            }
            .logo {
                height: 44px;
            }
            .logo-title {
                font-size: 0.95rem;
            }
            .logo-subtitle {
                display: none;
            }
            .nav {
                position: fixed;
                top: 100px; /* topbar(36px) + header(64px) */
                left: 0;
                width: 100%;
                height: calc(100vh - 100px);
                background-color: var(--white);
                flex-direction: column;
                padding: 2rem 1.5rem;
                gap: 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
                transform: translateX(-100%);
                transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
                opacity: 0;
                visibility: hidden;
                z-index: 998;
                overflow-y: auto;
            }
            .nav.open {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }
            .nav-link {
                display: block;
                font-size: 1.15rem;
                padding: 1rem 0;
                border-bottom: 1px solid var(--border-color);
                width: 100%;
            }
            .nav-link::after {
                display: none;
            }
            .hamburger {
                display: block;
            }

            /* --- HERO --- */
            .hero {
                padding-top: 155px; /* Increased from 124px to prevent overlapping header */
                padding-bottom: 4rem;
            }

            /* --- STATS BAR --- */
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .stat-item {
                padding: 0 0.5rem;
            }
            .hero-title {
                font-size: 1.9rem;
                line-height: 1.25;
            }
            .hero-description {
                font-size: 1rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 0.875rem;
            }
            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
                padding: 0.875rem 1.5rem;
                font-size: 0.975rem;
            }
            .hero-image {
                height: auto;
            }
            .hero-float-card {
                bottom: -15px;
                left: -10px;
                padding: 0.875rem 1.25rem;
                gap: 0.75rem;
                border-radius: 14px;
            }
            .hero-float-num {
                font-size: 1.1rem;
            }

            /* --- BENEFITS / VALUES --- */
            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .value-card {
                padding: 2rem 1.5rem;
                border-radius: 18px;
            }
            .value-icon {
                width: 52px;
                height: 52px;
                margin-bottom: 1.25rem;
                font-size: 1.5rem;
            }
            .value-title {
                font-size: 1.2rem;
            }

            /* --- ABOUT --- */
            .about-image {
                height: 260px;
            }
            .about-title {
                font-size: 1.5rem;
            }
            .partners-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            /* --- DOCUMENTS / TABS --- */
            .info-tabs {
                flex-wrap: wrap;
                gap: 0.5rem;
                margin-bottom: 2rem;
            }
            .tab-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
                flex: 1;
                text-align: center;
            }
            .info-card-layout {
                grid-template-columns: 1fr;
            }
            .info-card-text {
                padding: 1.5rem;
            }
            .info-card-image-container {
                min-height: 220px;
                padding: 0.5rem;
            }

            /* --- CONDITIONS --- */
            .conditions-box {
                padding: 1.5rem;
                border-radius: 16px;
            }
            .conditions-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .cond-column-title {
                font-size: 1.2rem;
            }
            .cond-notice {
                margin-top: 2rem;
                padding: 1rem 1.25rem;
                font-size: 0.9rem;
            }

            /* --- TIMELINE --- */
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 60px;
                padding-right: 0;
                padding-top: 1.25rem;
                padding-bottom: 1.25rem;
                text-align: left !important;
            }
            .timeline-item:nth-child(even) {
                left: 0%;
            }
            .timeline-item::after {
                left: 20px;
            }
            .timeline-dot {
                left: 6px !important;
                right: auto !important;
                top: 1.75rem;
                width: 22px;
                height: 22px;
            }
            .timeline-content {
                padding: 1.25rem;
                border-radius: 14px;
            }
            .timeline-title {
                font-size: 1.1rem;
            }

            /* --- NEWS --- */
            .news-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .news-content {
                padding: 1.25rem;
            }

            /* --- REGISTRATION FORM --- */
            .registration-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .reg-text-content h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
            .reg-text-content p {
                font-size: 0.975rem;
            }
            .reg-contact-card {
                padding: 1rem;
                gap: 1rem;
            }
            .reg-contact-info strong {
                font-size: 0.95rem;
                word-break: break-word;
            }
            .reg-form-container {
                padding: 1.5rem;
                border-radius: 20px;
            }
            .reg-form-title {
                font-size: 1.35rem;
            }
            .form-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .form-full-width {
                grid-column: span 1;
            }
            .form-submit-btn {
                font-size: 1rem;
                padding: 0.875rem;
                margin-top: 1.5rem;
            }

            /* --- FOOTER --- */
            .footer {
                padding: 3rem 0 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                margin-bottom: 2.5rem;
            }
            .footer-links-title {
                margin-bottom: 1.25rem;
                font-size: 1rem;
            }

            /* --- FLOATING MENU --- */
            .floating-menu {
                bottom: 80px;
                right: 14px;
                gap: 0.6rem;
            }
            .float-btn {
                width: 48px;
                height: 48px;
            }
            .float-zalo {
                font-size: 0.9rem;
            }
            .float-tooltip {
                display: none; /* hide tooltips on mobile — space is too tight */
            }

            /* --- MODAL --- */
            .modal-content {
                padding: 2rem 1.5rem;
                border-radius: 20px;
            }
            .modal-title {
                font-size: 1.35rem;
            }
        }

        /* SMALL MOBILE: up to 480px */
        @media (max-width: 480px) {
            .container {
                padding: 0 0.875rem;
            }
            .hero {
                padding-top: 175px; /* Extra height to offset the double-line mobile topbar */
            }
            .section-title {
                font-size: 1.3rem;
            }
            .hero-title {
                font-size: 1.6rem;
            }
            .hero-badge {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }
            .hero-image {
                height: auto;
            }
            .hero-float-card {
                left: 50%;
                transform: translateX(-50%);
                bottom: -15px;
                padding: 0.75rem 1.25rem;
                width: max-content;
                max-width: 90%;
            }
            .hero-float-num {
                font-size: 1rem;
            }
            .hero-float-desc {
                font-size: 0.65rem;
            }
            .btn {
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }
            .value-card {
                padding: 1.5rem 1.25rem;
            }
            .criteria-card {
                padding: 1rem;
                gap: 1rem;
            }
            .criteria-number {
                font-size: 1.6rem;
                min-width: 32px;
            }
            .lang-group {
                padding: 1rem;
            }
            .reg-form-container {
                padding: 1.25rem 1rem;
            }
            .form-input {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }
            .form-label {
                font-size: 0.85rem;
            }
            .cond-item {
                gap: 0.875rem;
            }
            .timeline-item {
                padding-left: 50px;
            }
            .timeline-content {
                padding: 1rem;
            }
            .tab-btn {
                font-size: 0.85rem;
                padding: 0.5rem 0.75rem;
            }
            .news-title {
                font-size: 1.05rem;
            }
        }

