        :root {
            --primary-maroon: #7d2d4e;
            --accent-orange: #e97535;
            --accent-gold: #f5a623;
            --deep-purple: #4a1942;
            --light-cream: #fef8f3;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: var(--light-cream);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Logo Section */
        .logo-section {
            background: linear-gradient(135deg, #ffffff 0%, var(--light-cream) 100%);
            padding: 30px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            animation: fadeInDown 1s ease;
            position: relative;
            overflow: hidden;
        }

        .logo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 3s infinite;
        }

        .partner-logo {
            transition: transform 0.3s ease;
        }

        .partner-logo:hover {
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-maroon) 50%, var(--accent-orange) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(125, 45, 78, 0.15) 0%, transparent 50%);
            animation: rotate 30s linear infinite;
        }

        .hero-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(30deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
                linear-gradient(150deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
                linear-gradient(30deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
                linear-gradient(150deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05));
            background-size: 80px 140px;
            background-position: 0 0, 0 0, 40px 70px, 40px 70px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .summit-logo-container {
            animation: fadeIn 1s ease, float 6s ease-in-out infinite;
            animation-delay: 0.3s;
        }

        .icon-element {
            position: absolute;
            animation: float 3s ease-in-out infinite;
        }

        .icon-element:nth-child(1) { animation-delay: 0s; }
        .icon-element:nth-child(2) { animation-delay: 0.5s; }
        .icon-element:nth-child(3) { animation-delay: 1s; }
        .icon-element:nth-child(4) { animation-delay: 1.5s; }

        .main-badge {
            background: linear-gradient(135deg, var(--primary-maroon), var(--accent-gold));
            padding: 15px 50px;
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            display: inline-block;
            animation: scaleIn 0.8s ease;
            animation-delay: 0.6s;
            animation-fill-mode: both;
            position: relative;
            overflow: hidden;
        }

        .main-badge::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: shimmer 3s infinite;
        }

        .main-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-style: italic;
            font-weight: 700;
            color: white;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
            animation-delay: 0.8s;
            animation-fill-mode: both;
            line-height: 1.3;
        }

        .trillion-text {
            background: linear-gradient(135deg, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            display: inline-block;
        }

        /* Info Section */
        .info-section {
            padding: 80px 0;
            background: #fff;
            position: relative;
        }

        .info-card {
            background: white;
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-maroon), var(--accent-orange), var(--accent-gold));
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        }

        /* Two Column Section */
        .two-column-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, var(--light-cream) 100%);
            position: relative;
            overflow: hidden;
        }

        .two-column-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(125, 45, 78, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .section-header {
            font-family: 'Playfair Display', serif;
            background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--accent-orange) 100%);
            color: white;
            padding: 20px 40px;
            border-radius: 20px;
            font-size: 2rem;
            font-style: italic;
            font-weight: 700;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(125, 45, 78, 0.3);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, white, transparent);
            animation: shimmer 2s infinite;
        }

        .why-matters {
            background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--accent-orange) 100%);
        }

        .who-participate {
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-item {
            background: white;
            padding: 20px 25px;
            margin: 15px 0;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background: linear-gradient(180deg, var(--primary-maroon), var(--accent-orange));
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .feature-item:hover::before {
            transform: scaleY(1);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-maroon), var(--accent-orange));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* Focus Areas */
        .focus-areas {
            background: linear-gradient(180deg, var(--deep-purple) 0%, var(--primary-maroon) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .focus-areas::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            /* background-image: 
                radial-gradient(circle at 30% 20%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(233, 117, 53, 0.1) 0%, transparent 50%); */
        }

        .focus-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: white;
            font-style: italic;
            font-weight: 700;
            text-align: center;
            margin-bottom: 80px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .icon-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .icon-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(125, 45, 78, 0.1), rgba(233, 117, 53, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .icon-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

        .icon-card:hover::before {
            opacity: 1;
        }

        .icon-box {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            border-radius: 20px;
            color: white;
            position: relative;
            transition: transform 0.4s ease;
        }

        .icon-card:hover .icon-box {
            transform: rotateY(360deg);
        }

        .maroon-bg { 
            background: linear-gradient(135deg, var(--primary-maroon), var(--accent-orange));
            box-shadow: 0 10px 30px rgba(125, 45, 78, 0.4);
        }
        
        .orange-bg { 
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
            box-shadow: 0 10px 30px rgba(233, 117, 53, 0.4);
        }
        
        .gold-bg { 
            background: linear-gradient(135deg, var(--accent-gold), #f7d794);
            box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
        }

        .icon-card h5 {
            font-weight: 600;
            color: var(--deep-purple);
            font-size: 1.1rem;
            line-height: 1.5;
        }

        /* CTA Section */
        .cta-section {
            /* background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--accent-orange) 50%, var(--accent-gold) 100%); */
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-style: italic;
            font-weight: 700;
            color: #7c2c4e;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .btn-express {
            background: white;
            color: var(--accent-orange);
            font-size: 1.8rem;
            font-weight: 700;
            padding: 20px 60px;
            border: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-express::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-express:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }

        .btn-express:hover::before {
            left: 100%;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 60px;
        }

        .gallery-item {
            position: relative;
            height: 250px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-placeholder {
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, var(--deep-purple) 0%, var(--primary-maroon) 100%);
            color: white;
            padding: 60px 0 20px;
            position: relative;
        }

        .hashtag {
            font-size: 2.5rem;
            font-weight: 700;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        /* Decorative Elements */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.3;
            animation: float 10s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--accent-gold);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--accent-orange);
            bottom: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            background: var(--primary-maroon);
            top: 50%;
            right: 5%;
            animation-delay: 4s;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }
            .focus-title, .cta-title {
                font-size: 2rem;
            }
            .section-header {
                font-size: 1.5rem;
                padding: 15px 25px;
            }
            .icon-box {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }
        }

        /* Scroll animations */
        .stagger-animation > * {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
        .stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
        .stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
        .stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
        .stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
        .stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }
        .stagger-animation > *:nth-child(7) { animation-delay: 0.7s; }
        .stagger-animation > *:nth-child(8) { animation-delay: 0.8s; }
    

                /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        @keyframes pulse-glow {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(125, 45, 78, 0.3);
            }
            50% { 
                box-shadow: 0 0 40px rgba(125, 45, 78, 0.6);
            }
        }

        /* Summit Highlights Section */
        .summit-highlights-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #ffffff 0%, var(--light-cream) 100%);
            position: relative;
            overflow: hidden;
        }

        .summit-highlights-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(125, 45, 78, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .summit-highlights-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(233, 117, 53, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
            animation-delay: 2s;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            font-style: italic;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-title span {
            background: linear-gradient(135deg, var(--primary-maroon), var(--accent-orange), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .section-title span::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
            border-radius: 2px;
        }

        /* Highlight Tiles */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            justify-content: center; 
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .highlight-tile {
            background: white;
            border-radius: 25px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            cursor: pointer;
        }

        .highlight-tile::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(125, 45, 78, 0.05), rgba(233, 117, 53, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .highlight-tile::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-maroon), var(--accent-orange), var(--accent-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .highlight-tile:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .highlight-tile:hover::before {
            opacity: 1;
        }

        .highlight-tile:hover::after {
            transform: scaleX(1);
        }

        .highlight-tile:hover .tile-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .highlight-tile:hover .tile-number {
            transform: scale(1.2);
        }

        /* Tile Icon */
        .tile-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 25px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
        }

        .tile-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            background: inherit;
            filter: blur(15px);
            opacity: 0.6;
            z-index: -1;
        }

        /* Icon colors for different tiles */
        .tile-1 .tile-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .tile-2 .tile-icon {
            background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--accent-orange) 100%);
        }

        .tile-3 .tile-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .tile-4 .tile-icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .tile-5 .tile-icon {
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
        }

        /* Tile Content */
        .tile-content {
            position: relative;
            z-index: 2;
        }

        .tile-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--deep-purple);
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .highlight-tile:hover .tile-title {
            color: var(--accent-orange);
        }

        .tile-description {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
        }

        /* Tile Number Badge */
        .tile-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
            transition: transform 0.3s ease;
        }

        /* Decorative Elements */
        .tile-corner-decoration {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100px;
            height: 100px;
            opacity: 0.05;
            pointer-events: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }

            .highlights-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .highlight-tile {
                padding: 30px 25px;
            }

            .tile-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .tile-title {
                font-size: 1.15rem;
            }
        }

        /* Stagger animation on load */
        .highlight-tile {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .highlight-tile:nth-child(1) { animation-delay: 0.1s; }
        .highlight-tile:nth-child(2) { animation-delay: 0.2s; }
        .highlight-tile:nth-child(3) { animation-delay: 0.3s; }
        .highlight-tile:nth-child(4) { animation-delay: 0.4s; }
        .highlight-tile:nth-child(5) { animation-delay: 0.5s; }