        /* ========================================
           ALUMNI NETWORK - COLOR PALETTE
           "Global Community & Connection" Theme
           Warm Burgundy + Rich Gold + Deep Teal
           ======================================== */
        :root {
            --an-burgundy: #8b2f39;
            --an-burgundy-light: #a84854;
            --an-deep: #1a2e3d;
            --an-navy: #2d4a5c;
            --an-teal: #2d7a7a;
            --an-teal-light: #4a9d9d;
            --an-gold: #c9a227;
            --an-gold-light: #e8b85a;
            --an-copper: #b87333;
            --an-copper-light: #d4915a;
            --an-cream: #faf8f5;
            --an-stone: #f0ebe3;
            --an-warm-white: #fffcf7;
            --an-text: #1e2a32;
            --an-text-light: #5a6b75;
            --an-border: rgba(139, 47, 57, 0.12);
            --an-gradient-hero: linear-gradient(145deg, #1a2e3d 0%, #2d4a5c 30%, #8b2f39 70%, #a84854 100%);
            --an-gradient-burgundy: linear-gradient(135deg, #8b2f39 0%, #a84854 100%);
            --an-gradient-gold: linear-gradient(135deg, #c9a227 0%, #e8b85a 100%);
            --an-gradient-teal: linear-gradient(135deg, #2d7a7a 0%, #4a9d9d 100%);
            --an-gradient-copper: linear-gradient(135deg, #b87333 0%, #d4915a 100%);
        }

        /* ========================================
           HERO SECTION - ALUMNI NETWORK
           ======================================== */
        .an-hero {
            position: relative;
            min-height: 680px;
            background: var(--an-gradient-hero);
            padding: 140px 60px 100px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Gradient overlays */
        .an-hero::before {
            content: '';
            position: absolute;
            top: -15%;
            right: -8%;
            width: 850px;
            height: 850px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.18) 0%, transparent 60%);
            pointer-events: none;
            animation: anOrbFloat 12s ease-in-out infinite;
        }

        .an-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -12%;
            width: 750px;
            height: 750px;
            background: radial-gradient(circle, rgba(45, 122, 122, 0.15) 0%, transparent 60%);
            pointer-events: none;
            animation: anOrbFloat 10s ease-in-out infinite 2s;
        }

        @keyframes anOrbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(25px, -25px) scale(1.08); }
        }

        /* Decorative grid */
        .an-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
            background-size: 75px 75px;
            pointer-events: none;
        }

        /* Floating network icons */
        .an-hero-icons {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .an-float-icon {
            position: absolute;
            opacity: 0.09;
            color: #fff;
            animation: anIconFloat 9s ease-in-out infinite;
        }

        .an-float-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            stroke-width: 1.5;
            fill: none;
        }

        .an-float-icon-1 { width: 85px; height: 85px; top: 12%; right: 22%; animation-delay: 0s; }
        .an-float-icon-2 { width: 65px; height: 65px; top: 38%; right: 12%; animation-delay: 1.2s; }
        .an-float-icon-3 { width: 75px; height: 75px; top: 58%; right: 28%; animation-delay: 2.4s; }
        .an-float-icon-4 { width: 55px; height: 55px; top: 72%; right: 18%; animation-delay: 0.8s; }
        .an-float-icon-5 { width: 70px; height: 70px; top: 22%; right: 42%; animation-delay: 1.8s; }
        .an-float-icon-6 { width: 60px; height: 60px; top: 48%; right: 38%; animation-delay: 3s; }

        @keyframes anIconFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.09; }
            50% { transform: translateY(-18px) rotate(6deg); opacity: 0.14; }
        }

        /* Hero container */
        .an-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 70px;
            align-items: center;
        }

        /* Left content */
        .an-hero-content {
            color: #ffffff;
        }

        .an-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.18);
            padding: 10px 22px;
            border-radius: 50px;
            margin-bottom: 30px;
        }

        .an-hero-badge-icon {
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .an-hero-badge-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--an-gold);
        }

        .an-hero-badge span {
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--an-gold-light);
            text-transform: uppercase;
            letter-spacing: 1.8px;
        }

        .an-hero-title {
            font-family: var(--font-heading);
            font-size: 3.8rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.12;
            margin: 0 0 26px;
        }

        .an-hero-title .accent {
            background: var(--an-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .an-hero-subtitle {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 500;
            color: rgba(255,255,255,0.92);
            line-height: 1.6;
            margin: 0 0 22px;
            max-width: 620px;
        }

        .an-hero-text {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.78);
            line-height: 1.85;
            margin: 0 0 36px;
            max-width: 600px;
        }

        /* CTA Buttons */
        .an-hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .an-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 0.98rem;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
        }

        .an-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .an-btn:hover svg {
            transform: translateX(5px);
        }

        .an-btn-primary {
            background: var(--an-gradient-gold);
            color: var(--an-deep);
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.35);
        }

        .an-btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(201, 162, 39, 0.45);
            color: var(--an-deep);
        }

        .an-btn-secondary {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.25);
            color: #fff;
        }

        .an-btn-secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-4px);
            color: #fff;
        }

        /* Right side: Stats cards */
        .an-hero-visual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .an-stat-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 20px;
            padding: 30px 26px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: anCardSlide 0.7s ease-out both;
        }

        .an-stat-card:nth-child(1) { animation-delay: 0.15s; }
        .an-stat-card:nth-child(2) { animation-delay: 0.25s; }
        .an-stat-card:nth-child(3) { animation-delay: 0.35s; }
        .an-stat-card:nth-child(4) { animation-delay: 0.45s; }

        @keyframes anCardSlide {
            from { opacity: 0; transform: translateY(35px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .an-stat-card:hover {
            background: rgba(255,255,255,0.16);
            transform: translateY(-8px);
            border-color: rgba(255,255,255,0.3);
        }

        .an-stat-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
        }

        .an-stat-card-icon svg {
            width: 28px;
            height: 28px;
            stroke: #fff;
            stroke-width: 1.8;
        }

        .an-stat-card-icon.gold { background: var(--an-gradient-gold); }
        .an-stat-card-icon.teal { background: var(--an-gradient-teal); }
        .an-stat-card-icon.copper { background: var(--an-gradient-copper); }
        .an-stat-card-icon.burgundy { background: var(--an-gradient-burgundy); }

        .an-stat-card-value {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin: 0 0 8px;
        }

        .an-stat-card-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.4;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .an-hero-container {
                grid-template-columns: 1fr;
                gap: 55px;
            }
            .an-hero-visual {
                max-width: 550px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .an-hero {
                padding: 120px 24px 80px;
                min-height: auto;
            }
            .an-hero-title {
                font-size: 2.6rem;
            }
            .an-hero-subtitle {
                font-size: 1.15rem;
            }
            .an-hero-visual {
                grid-template-columns: 1fr;
            }
            .an-stat-card-value {
                font-size: 1.8rem;
            }
        }

        /* ========================================
           COMMON SECTION STYLES
           ======================================== */
        .an-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(139, 47, 57, 0.08) 0%, rgba(201, 162, 39, 0.06) 100%);
            border: 1px solid rgba(139, 47, 57, 0.15);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 22px;
        }

        .an-section-badge span {
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--an-burgundy);
            text-transform: uppercase;
            letter-spacing: 1.3px;
        }

        .an-section-title {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--an-deep);
            line-height: 1.2;
            margin: 0 0 22px;
        }

        .an-section-title .accent {
            background: var(--an-gradient-burgundy);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .an-section-subtitle {
            font-size: 1.15rem;
            color: var(--an-text-light);
            line-height: 1.75;
            max-width: 750px;
            margin: 0 auto;
        }

        /* ========================================
           SECTION 1 - WHY STAY CONNECTED
           4-Card Icon Grid
           ======================================== */
        .an-why-connected {
            padding: 100px 60px;
            background: var(--an-cream);
            position: relative;
            overflow: hidden;
        }

        .an-why-connected::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 100%;
            background: radial-gradient(ellipse at top right, rgba(139, 47, 57, 0.05) 0%, transparent 60%);
            pointer-events: none;
        }

        .an-why-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .an-why-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .an-why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .an-why-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(26, 46, 61, 0.07);
            border: 1px solid rgba(139, 47, 57, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .an-why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            border-radius: 24px 24px 0 0;
            transition: height 0.3s ease;
        }

        .an-why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 22px 55px rgba(26, 46, 61, 0.14);
        }

        .an-why-card:hover::before {
            height: 8px;
        }

        .an-why-card:nth-child(1)::before { background: var(--an-gradient-burgundy); }
        .an-why-card:nth-child(2)::before { background: var(--an-gradient-gold); }
        .an-why-card:nth-child(3)::before { background: var(--an-gradient-teal); }
        .an-why-card:nth-child(4)::before { background: var(--an-gradient-copper); }

        .an-why-card-icon {
            width: 75px;
            height: 75px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .an-why-card-icon svg {
            width: 36px;
            height: 36px;
            stroke: #fff;
            stroke-width: 1.7;
        }

        .an-why-card:nth-child(1) .an-why-card-icon { background: var(--an-gradient-burgundy); }
        .an-why-card:nth-child(2) .an-why-card-icon { background: var(--an-gradient-gold); }
        .an-why-card:nth-child(3) .an-why-card-icon { background: var(--an-gradient-teal); }
        .an-why-card:nth-child(4) .an-why-card-icon { background: var(--an-gradient-copper); }

        .an-why-card-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--an-deep);
            margin: 0 0 14px;
        }

        .an-why-card-text {
            font-size: 0.95rem;
            color: var(--an-text-light);
            line-height: 1.7;
            margin: 0;
        }

        .an-why-cta {
            text-align: center;
            margin-top: 50px;
        }

        .an-why-cta .an-btn {
            background: var(--an-gradient-burgundy);
            color: #fff;
            box-shadow: 0 10px 30px rgba(139, 47, 57, 0.3);
        }

        .an-why-cta .an-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(139, 47, 57, 0.4);
            color: #fff;
        }

        @media (max-width: 1100px) {
            .an-why-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .an-why-connected { padding: 70px 24px; }
            .an-why-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 2 - GLOBAL ALUMNI COMMUNITY
           Full-width with map/stats
           ======================================== */
        .an-global {
            padding: 100px 60px;
            background: var(--an-gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .an-global::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 130%;
            height: 130%;
            background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.12) 0%, transparent 55%);
            pointer-events: none;
        }

        .an-global-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .an-global-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .an-global-header .an-section-badge {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.18);
        }

        .an-global-header .an-section-badge span {
            color: var(--an-gold-light);
        }

        .an-global-header .an-section-title {
            color: #fff;
        }

        .an-global-header .an-section-title .accent {
            background: var(--an-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .an-global-text {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.82);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .an-global-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .an-global-stat {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .an-global-stat:hover {
            background: rgba(255,255,255,0.14);
            transform: translateY(-6px);
            border-color: rgba(255,255,255,0.25);
        }

        .an-global-stat-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .an-global-stat-icon svg {
            width: 30px;
            height: 30px;
            stroke: #fff;
            stroke-width: 1.7;
        }

        .an-global-stat:nth-child(1) .an-global-stat-icon { background: var(--an-gradient-gold); }
        .an-global-stat:nth-child(2) .an-global-stat-icon { background: var(--an-gradient-teal); }
        .an-global-stat:nth-child(3) .an-global-stat-icon { background: var(--an-gradient-copper); }
        .an-global-stat:nth-child(4) .an-global-stat-icon { background: var(--an-gradient-burgundy); }

        .an-global-stat-value {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin: 0 0 10px;
        }

        .an-global-stat-label {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.5;
            margin: 0;
        }

        .an-global-cta {
            text-align: center;
            margin-top: 50px;
        }

        @media (max-width: 1000px) {
            .an-global-stats { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .an-global { padding: 70px 24px; }
            .an-global-stats { grid-template-columns: 1fr; }
            .an-global-stat-value { font-size: 2rem; }
        }

        /* ========================================
           SECTION 3 - ALUMNI BENEFITS & SERVICES
           6-Card Layout
           ======================================== */
        .an-benefits {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--an-stone) 0%, var(--an-warm-white) 100%);
            position: relative;
        }

        .an-benefits-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .an-benefits-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .an-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .an-benefit-card {
            background: #fff;
            border-radius: 22px;
            padding: 36px 30px;
            box-shadow: 0 10px 35px rgba(26, 46, 61, 0.07);
            border: 1px solid rgba(139, 47, 57, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .an-benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .an-benefit-card:nth-child(1)::before { background: var(--an-gradient-burgundy); }
        .an-benefit-card:nth-child(2)::before { background: var(--an-gradient-gold); }
        .an-benefit-card:nth-child(3)::before { background: var(--an-gradient-teal); }
        .an-benefit-card:nth-child(4)::before { background: var(--an-gradient-copper); }
        .an-benefit-card:nth-child(5)::before { background: var(--an-gradient-burgundy); }
        .an-benefit-card:nth-child(6)::before { background: var(--an-gradient-gold); }

        .an-benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(26, 46, 61, 0.13);
        }

        .an-benefit-card:hover::before {
            opacity: 1;
            height: 6px;
        }

        .an-benefit-card-icon {
            width: 68px;
            height: 68px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
        }

        .an-benefit-card-icon svg {
            width: 32px;
            height: 32px;
            stroke: #fff;
            stroke-width: 1.7;
        }

        .an-benefit-card:nth-child(1) .an-benefit-card-icon { background: var(--an-gradient-burgundy); }
        .an-benefit-card:nth-child(2) .an-benefit-card-icon { background: var(--an-gradient-gold); }
        .an-benefit-card:nth-child(3) .an-benefit-card-icon { background: var(--an-gradient-teal); }
        .an-benefit-card:nth-child(4) .an-benefit-card-icon { background: var(--an-gradient-copper); }
        .an-benefit-card:nth-child(5) .an-benefit-card-icon { background: var(--an-gradient-burgundy); }
        .an-benefit-card:nth-child(6) .an-benefit-card-icon { background: var(--an-gradient-gold); }

        .an-benefit-card-title {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--an-deep);
            margin: 0 0 12px;
        }

        .an-benefit-card-text {
            font-size: 0.95rem;
            color: var(--an-text-light);
            line-height: 1.7;
            margin: 0;
        }

        .an-benefits-cta {
            text-align: center;
            margin-top: 50px;
        }

        @media (max-width: 1000px) {
            .an-benefits-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .an-benefits { padding: 70px 24px; }
            .an-benefits-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 4 - STAY INVOLVED
           3-Card Engagement Options
           ======================================== */
        .an-involved {
            padding: 100px 60px;
            background: var(--an-warm-white);
            position: relative;
        }

        .an-involved-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .an-involved-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .an-involved-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .an-involved-card {
            background: #fff;
            border-radius: 24px;
            padding: 44px 36px;
            text-align: center;
            box-shadow: 0 12px 40px rgba(26, 46, 61, 0.08);
            border: 1px solid rgba(139, 47, 57, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .an-involved-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .an-involved-card:nth-child(1)::before { background: var(--an-gradient-burgundy); }
        .an-involved-card:nth-child(2)::before { background: var(--an-gradient-teal); }
        .an-involved-card:nth-child(3)::before { background: var(--an-gradient-gold); }

        .an-involved-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 24px 60px rgba(26, 46, 61, 0.15);
        }

        .an-involved-card:hover::before {
            opacity: 1;
        }

        .an-involved-card-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 26px;
        }

        .an-involved-card-icon svg {
            width: 38px;
            height: 38px;
            stroke: #fff;
            stroke-width: 1.6;
        }

        .an-involved-card:nth-child(1) .an-involved-card-icon { background: var(--an-gradient-burgundy); }
        .an-involved-card:nth-child(2) .an-involved-card-icon { background: var(--an-gradient-teal); }
        .an-involved-card:nth-child(3) .an-involved-card-icon { background: var(--an-gradient-gold); }

        .an-involved-card-title {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--an-deep);
            margin: 0 0 16px;
        }

        .an-involved-card-text {
            font-size: 1rem;
            color: var(--an-text-light);
            line-height: 1.75;
            margin: 0;
        }

        .an-involved-cta {
            text-align: center;
            margin-top: 50px;
        }

        @media (max-width: 900px) {
            .an-involved-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
        }

        @media (max-width: 600px) {
            .an-involved { padding: 70px 24px; }
        }

        /* ========================================
           SECTION 5 - ALUMNI CHAPTERS
           4-Card Chapter Types
           ======================================== */
        .an-chapters {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--an-cream) 0%, var(--an-stone) 100%);
            position: relative;
        }

        .an-chapters-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .an-chapters-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .an-chapters-text {
            font-size: 1.1rem;
            color: var(--an-text-light);
            line-height: 1.8;
            max-width: 750px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .an-chapters-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 26px;
        }

        .an-chapter-card {
            background: #fff;
            border-radius: 22px;
            padding: 38px 30px;
            text-align: center;
            box-shadow: 0 10px 35px rgba(26, 46, 61, 0.07);
            border: 1px solid rgba(139, 47, 57, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .an-chapter-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 5px;
            border-radius: 0 0 22px 22px;
            transition: height 0.3s ease;
        }

        .an-chapter-card:nth-child(1)::after { background: var(--an-gradient-burgundy); }
        .an-chapter-card:nth-child(2)::after { background: var(--an-gradient-gold); }
        .an-chapter-card:nth-child(3)::after { background: var(--an-gradient-teal); }
        .an-chapter-card:nth-child(4)::after { background: var(--an-gradient-copper); }

        .an-chapter-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(26, 46, 61, 0.12);
        }

        .an-chapter-card:hover::after {
            height: 8px;
        }

        .an-chapter-card-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
        }

        .an-chapter-card-icon svg {
            width: 34px;
            height: 34px;
            stroke: #fff;
            stroke-width: 1.7;
        }

        .an-chapter-card:nth-child(1) .an-chapter-card-icon { background: var(--an-gradient-burgundy); }
        .an-chapter-card:nth-child(2) .an-chapter-card-icon { background: var(--an-gradient-gold); }
        .an-chapter-card:nth-child(3) .an-chapter-card-icon { background: var(--an-gradient-teal); }
        .an-chapter-card:nth-child(4) .an-chapter-card-icon { background: var(--an-gradient-copper); }

        .an-chapter-card-title {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--an-deep);
            margin: 0 0 12px;
        }

        .an-chapter-card-text {
            font-size: 0.95rem;
            color: var(--an-text-light);
            line-height: 1.7;
            margin: 0;
        }

        .an-chapters-cta {
            text-align: center;
            margin-top: 50px;
        }

        @media (max-width: 1000px) {
            .an-chapters-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .an-chapters { padding: 70px 24px; }
            .an-chapters-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 6 - ALUMNI EVENTS
           Event Grid with Image Cards
           ======================================== */
        .an-events {
            padding: 100px 60px;
            background: var(--an-warm-white);
            position: relative;
        }

        .an-events-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .an-events-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .an-events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-bottom: 50px;
        }

        .an-event-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(26, 46, 61, 0.07);
            border: 1px solid rgba(139, 47, 57, 0.08);
            transition: all 0.4s ease;
        }

        .an-event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 22px 55px rgba(26, 46, 61, 0.14);
        }

        .an-event-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .an-event-card-body {
            padding: 28px 26px;
        }

        .an-event-card-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -45px 0 18px 0;
            position: relative;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .an-event-card-icon svg {
            width: 24px;
            height: 24px;
            stroke: #fff;
            stroke-width: 1.8;
        }

        .an-event-card:nth-child(1) .an-event-card-icon { background: var(--an-gradient-burgundy); }
        .an-event-card:nth-child(2) .an-event-card-icon { background: var(--an-gradient-gold); }
        .an-event-card:nth-child(3) .an-event-card-icon { background: var(--an-gradient-teal); }
        .an-event-card:nth-child(4) .an-event-card-icon { background: var(--an-gradient-copper); }
        .an-event-card:nth-child(5) .an-event-card-icon { background: var(--an-gradient-burgundy); }
        .an-event-card:nth-child(6) .an-event-card-icon { background: var(--an-gradient-gold); }

        .an-event-card-title {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--an-deep);
            margin: 0 0 10px;
        }

        .an-event-card-text {
            font-size: 0.9rem;
            color: var(--an-text-light);
            line-height: 1.6;
            margin: 0;
        }

        .an-events-cta {
            text-align: center;
        }

        @media (max-width: 900px) {
            .an-events-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .an-events { padding: 70px 24px; }
            .an-events-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 7 - LIFELONG LEARNING
           5-Card Learning Options
           ======================================== */
        .an-learning {
            padding: 100px 60px;
            background: var(--an-gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .an-learning::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        /* ========================================
           SECTION 10 - GIVE BACK
           Light, Non-Fundraising Tone
           ======================================== */
        .an-giveback {
            padding: 80px 60px;
            background: linear-gradient(135deg, rgba(139, 47, 57, 0.04) 0%, rgba(201, 162, 39, 0.03) 100%);
            border-top: 1px solid rgba(139, 47, 57, 0.08);
            border-bottom: 1px solid rgba(139, 47, 57, 0.08);
        }

        .an-giveback-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .an-giveback-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--an-gradient-burgundy);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 10px 30px rgba(139, 47, 57, 0.25);
        }

        .an-giveback-icon svg {
            width: 32px;
            height: 32px;
            stroke: #fff;
            stroke-width: 1.8;
        }

        .an-giveback h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--an-deep);
            margin: 0 0 18px;
        }

        .an-giveback p {
            font-size: 1.05rem;
            color: var(--an-text-light);
            line-height: 1.8;
            margin: 0 0 28px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 600px) {
            .an-giveback { padding: 60px 24px; }
        }

        /* ========================================
           SECTION 11 - UPDATE YOUR DETAILS
           ======================================== */
        .an-update {
            padding: 100px 60px;
            background: var(--an-warm-white);
            position: relative;
        }

        .an-update-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .an-update-content {
            background: #fff;
            border-radius: 24px;
            padding: 50px 45px;
            box-shadow: 0 15px 50px rgba(26, 46, 61, 0.1);
            border: 1px solid rgba(139, 47, 57, 0.08);
            text-align: center;
        }

        .an-update-icon {
            width: 75px;
            height: 75px;
            border-radius: 18px;
            background: var(--an-gradient-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 26px;
            box-shadow: 0 10px 30px rgba(45, 122, 122, 0.25);
        }

        .an-update-icon svg {
            width: 36px;
            height: 36px;
            stroke: #fff;
            stroke-width: 1.7;
        }

        .an-update h2 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--an-deep);
            margin: 0 0 16px;
        }

        .an-update p {
            font-size: 1.05rem;
            color: var(--an-text-light);
            line-height: 1.8;
            margin: 0 0 32px;
        }

        @media (max-width: 600px) {
            .an-update { padding: 70px 24px; }
            .an-update-content { padding: 40px 28px; }
        }

        /* ========================================
           SECTION 12 - ALUMNI PORTAL LOGIN
           ======================================== */
        .an-portal {
            padding: 100px 60px;
            background: linear-gradient(135deg, var(--an-deep) 0%, var(--an-navy) 50%, var(--an-burgundy) 100%);
            position: relative;
            overflow: hidden;
        }

        .an-portal::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .an-portal-container {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .an-portal-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
        }

        .an-portal-icon svg {
            width: 38px;
            height: 38px;
            stroke: var(--an-gold);
            stroke-width: 1.7;
        }

        .an-portal h2 {
            font-family: var(--font-heading);
            font-size: 2.4rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 20px;
        }

        .an-portal p {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin: 0 0 36px;
        }

        .an-portal-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 600;
            padding: 18px 40px;
            background: var(--an-gradient-gold);
            color: var(--an-deep);
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.35s ease;
            box-shadow: 0 12px 35px rgba(201, 162, 39, 0.4);
        }

        .an-portal-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 50px rgba(201, 162, 39, 0.5);
            color: var(--an-deep);
        }

        .an-portal-btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .an-portal-btn:hover svg {
            transform: translateX(5px);
        }

        @media (max-width: 600px) {
            .an-portal { padding: 70px 24px; }
            .an-portal h2 { font-size: 1.8rem; }
        }

        /* ========================================
           SECTION 13 - FINAL CTA
           ======================================== */
        .an-final-cta {
            padding: 100px 60px;
            background: var(--an-gradient-hero);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .an-final-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.12) 0%, transparent 50%);
            pointer-events: none;
        }

        .an-final-cta-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .an-final-cta h2 {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 40px;
            line-height: 1.25;
        }

        .an-final-cta h2 .accent {
            background: var(--an-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .an-final-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .an-final-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            padding: 18px 36px;
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.35s ease;
            border: none;
            cursor: pointer;
        }

        .an-final-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .an-final-btn:hover svg {
            transform: translateX(5px);
        }

        .an-final-btn.primary {
            background: var(--an-gradient-gold);
            color: var(--an-deep);
            box-shadow: 0 10px 35px rgba(201, 162, 39, 0.4);
        }

        .an-final-btn.primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 50px rgba(201, 162, 39, 0.5);
            color: var(--an-deep);
        }

        .an-final-btn.secondary {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.25);
            color: #fff;
        }

        .an-final-btn.secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-5px);
            color: #fff;
        }

        @media (max-width: 768px) {
            .an-final-cta { padding: 70px 24px; }
            .an-final-cta h2 { font-size: 2.2rem; }
            .an-final-cta-buttons { flex-direction: column; align-items: center; }
            .an-final-btn { width: 100%; max-width: 350px; justify-content: center; }
        }

        .an-learning-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .an-learning-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .an-learning-header .an-section-badge {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.18);
        }

        .an-learning-header .an-section-badge span {
            color: var(--an-gold-light);
        }

        .an-learning-header .an-section-title {
            color: #fff;
        }

        .an-learning-header .an-section-title .accent {
            background: var(--an-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .an-learning-text {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.82);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .an-learning-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 22px;
        }

        .an-learning-card {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .an-learning-card:hover {
            background: rgba(255,255,255,0.14);
            transform: translateY(-8px);
            border-color: rgba(255,255,255,0.25);
        }

        .an-learning-card-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .an-learning-card-icon svg {
            width: 30px;
            height: 30px;
            stroke: #fff;
            stroke-width: 1.7;
        }

        .an-learning-card:nth-child(1) .an-learning-card-icon { background: var(--an-gradient-gold); }
        .an-learning-card:nth-child(2) .an-learning-card-icon { background: var(--an-gradient-teal); }
        .an-learning-card:nth-child(3) .an-learning-card-icon { background: var(--an-gradient-copper); }
        .an-learning-card:nth-child(4) .an-learning-card-icon { background: var(--an-gradient-burgundy); }
        .an-learning-card:nth-child(5) .an-learning-card-icon { background: var(--an-gradient-gold); }

        .an-learning-card-title {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
            line-height: 1.4;
        }

        .an-learning-cta {
            text-align: center;
            margin-top: 50px;
        }

        @media (max-width: 1100px) {
            .an-learning-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 700px) {
            .an-learning { padding: 70px 24px; }
            .an-learning-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 500px) {
            .an-learning-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 8 - ALUMNI SUCCESS STORIES
           Spotlight Cards with Photos
           ======================================== */
        .an-stories {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--an-stone) 0%, var(--an-warm-white) 100%);
            position: relative;
        }

        .an-stories-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .an-stories-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .an-stories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .an-story-card {
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(26, 46, 61, 0.08);
            border: 1px solid rgba(139, 47, 57, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .an-story-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 22px 55px rgba(26, 46, 61, 0.15);
        }

        .an-story-card-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
        }

        .an-story-card-body {
            padding: 26px 24px;
        }

        .an-story-card-name {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--an-deep);
            margin: 0 0 8px;
        }

        .an-story-card-program {
            font-size: 0.85rem;
            color: var(--an-burgundy);
            font-weight: 600;
            margin: 0 0 12px;
        }

        .an-story-card-text {
            font-size: 0.9rem;
            color: var(--an-text-light);
            line-height: 1.7;
            margin: 0 0 18px;
        }

        .an-story-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--an-burgundy);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .an-story-card-link:hover {
            color: var(--an-burgundy-light);
            gap: 10px;
        }

        .an-story-card-link svg {
            width: 16px;
            height: 16px;
        }

        .an-stories-cta {
            text-align: center;
            margin-top: 50px;
        }

        @media (max-width: 1100px) {
            .an-stories-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .an-stories { padding: 70px 24px; }
            .an-stories-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 9 - CAREER SUPPORT
           5-Card Mini Services
           ======================================== */
        .an-career {
            padding: 100px 60px;
            background: var(--an-cream);
            position: relative;
        }

        .an-career-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .an-career-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .an-career-text {
            font-size: 1.1rem;
            color: var(--an-text-light);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .an-career-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
        }

        .an-career-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(26, 46, 61, 0.06);
            border: 1px solid rgba(139, 47, 57, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .an-career-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .an-career-card:nth-child(1)::before { background: var(--an-gradient-burgundy); }
        .an-career-card:nth-child(2)::before { background: var(--an-gradient-gold); }
        .an-career-card:nth-child(3)::before { background: var(--an-gradient-teal); }
        .an-career-card:nth-child(4)::before { background: var(--an-gradient-copper); }
        .an-career-card:nth-child(5)::before { background: var(--an-gradient-burgundy); }

        .an-career-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 45px rgba(26, 46, 61, 0.12);
        }

        .an-career-card:hover::before {
            opacity: 1;
            height: 6px;
        }

        .an-career-card-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
        }

        .an-career-card-icon svg {
            width: 28px;
            height: 28px;
            stroke: #fff;
            stroke-width: 1.7;
        }

        .an-career-card:nth-child(1) .an-career-card-icon { background: var(--an-gradient-burgundy); }
        .an-career-card:nth-child(2) .an-career-card-icon { background: var(--an-gradient-gold); }
        .an-career-card:nth-child(3) .an-career-card-icon { background: var(--an-gradient-teal); }
        .an-career-card:nth-child(4) .an-career-card-icon { background: var(--an-gradient-copper); }
        .an-career-card:nth-child(5) .an-career-card-icon { background: var(--an-gradient-burgundy); }

        .an-career-card-title {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--an-deep);
            margin: 0;
            line-height: 1.4;
        }

        .an-career-cta {
            text-align: center;
            margin-top: 50px;
        }

        @media (max-width: 1100px) {
            .an-career-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 700px) {
            .an-career { padding: 70px 24px; }
            .an-career-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 500px) {
            .an-career-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           RESPONSIVE UTILITIES
           ======================================== */
        @media (max-width: 768px) {
            .an-section-title {
                font-size: 2rem;
            }
            .an-section-subtitle {
                font-size: 1rem;
            }
        }