  
      
      /* Pillar Section License Verification */
.license-verification {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(197, 149, 91, 0.2);
}

.verify-link {
    color: var(--nile-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(53, 92, 125, 0.05);
    border: 1px solid rgba(53, 92, 125, 0.2);
}

.verify-link:hover {
    color: var(--primary-navy);
    background: rgba(53, 92, 125, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.verify-link i {
    margin-right: 6px;
    font-size: 12px;
}

/* Enhanced Official License Card */
.official-license {
    border: 3px solid var(--nile-blue);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.official-license::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-gold);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { 
        background: linear-gradient(90deg, var(--nile-blue), var(--rich-gold), var(--nile-blue));
        transform: translateX(-100%);
    }
    50% { 
        background: linear-gradient(90deg, var(--rich-gold), var(--nile-blue), var(--rich-gold));
        transform: translateX(0%);
    }
    100% { 
        background: linear-gradient(90deg, var(--nile-blue), var(--rich-gold), var(--nile-blue));
        transform: translateX(100%);
    }
}


.official-badge {
    background: var(--gradient-hero);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-subtle);
}

.verify-license-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 14px 28px;
    background: var(--gradient-hero);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid var(--nile-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verify-license-btn:hover {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-dramatic);
    border-color: var(--rich-gold);
}

.verify-license-btn i {
    margin-right: 10px;
    font-size: 16px;
}

/* Trust Guarantee Section */
.trust-guarantee {
    margin-top: 60px;
    background: var(--gradient-elegant);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    border: 2px solid var(--rich-gold);
    position: relative;
    overflow: hidden;
}

.trust-guarantee::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 149, 91, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.guarantee-content {
    position: relative;
    z-index: 2;
}

.guarantee-title {
    color: var(--primary-navy);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-text {
    color: var(--charcoal-deep);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-features .feature {
    display: flex;
    align-items: center;
    color: var(--nile-blue);
    font-weight: 600;
    font-size: 15px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(53, 92, 125, 0.1);
    transition: all 0.3s ease;
}

.guarantee-features .feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--light-sand);
}

.guarantee-features .feature i {
    margin-right: 10px;
    font-size: 20px;
    color: var(--rich-gold);
}

/* Mobile Responsive Additions */
@media (max-width: 768px) {
    
    .trust-guarantee {
        padding: 40px 25px;
        margin-top: 40px;
    }
    
    .guarantee-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .guarantee-features .feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .guarantee-features .feature i {
        font-size: 18px;
        margin-right: 8px;
    }
    
    .verify-license-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .verify-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .license-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .guarantee-title {
        font-size: 1.5rem;
    }
    
    .guarantee-text {
        font-size: 14px;
    }
    
    .trust-guarantee {
        padding: 30px 20px;
    }
    
    .guarantee-features .feature {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .guarantee-features .feature i {
        font-size: 16px;
        margin-right: 8px;
        flex-shrink: 0;
    }
}
      

        :root {
            /* Egyptian-Inspired Luxury Color Palette */
            --primary-navy: #003285;
            --deep-teal: #1a4b66;
            --rich-gold: #c5955b;
            --warm-bronze: #b8860b;
            --desert-sand: #f4e4bc;
            --nile-blue: #355c7d;
            --papyrus-cream: #faf8f3;
            --ivory-white: #fefcf7;
            --charcoal-deep: #2c3e50;
            --warm-gray: #6c757d;
            --light-sand: #f5f3ee;
            --sunset-orange: #d4925b;
            
            /* Advanced Gradients */
            --gradient-hero: linear-gradient(135deg, #003285 0%, #1a4b66 50%, #2c3e50 100%);
            --gradient-gold: linear-gradient(135deg, #c5955b 0%, #b8860b 100%);
            --gradient-elegant: linear-gradient(135deg, #faf8f3 0%, #f5f3ee 100%);
            --gradient-section: linear-gradient(135deg, #fefcf7 0%, #f8f6f1 100%);
            --gradient-card: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
            --gradient-overlay: linear-gradient(135deg, rgba(28, 50, 92, 0.85) 0%, rgba(26, 75, 102, 0.75) 100%);
            
            /* Professional Shadows */
            --shadow-subtle: 0 4px 20px rgba(28, 50, 92, 0.08);
            --shadow-medium: 0 8px 32px rgba(28, 50, 92, 0.12);
            --shadow-dramatic: 0 16px 48px rgba(28, 50, 92, 0.15);
            --shadow-gold: 0 6px 25px rgba(197, 149, 91, 0.3);
            --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.05);
        }


        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgb(28 50 92 / 41%) 0%, rgb(26 75 102 / 66%) 50%, rgb(44 62 80 / 48%) 100%), url(https://www.luxorandaswan.com/photos/gem.jpg) center / cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none"><path d="M0 10L10 0L20 10L30 0L40 10L50 0L60 10L70 0L80 10L90 0L100 10V20H0V10Z" fill="rgba(197,149,91,0.1)"/></svg>') repeat-x;
            opacity: 0.3;
            animation: wave 8s ease-in-out infinite;
        }

        @keyframes wave {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-100px); }
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
            z-index: 2;
            position: relative;
        }

        .hero-badge {
            background: var(--gradient-gold);
            color: var(--primary-navy);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-gold);
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.7s both;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            font-weight: 400;
            opacity: 0.95;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .hero-cta {
            background: transparent;
            border: 2px solid var(--rich-gold);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            animation: fadeInUp 1s ease-out 1.1s both;
        }

        .hero-cta:hover {
            background: var(--rich-gold);
            color: var(--primary-navy);
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
        }


        /* Story Section */
        .story-section {
            padding: 100px 0;
            background: var(--gradient-section);
            position: relative;
        }

        .story-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(197, 149, 91, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            background: var(--light-sand);
            color: var(--primary-navy);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1rem;
            border: 1px solid rgba(197, 149, 91, 0.3);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-gold);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--warm-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Three Pillars Grid - Force single row */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .pillar-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-medium);
            border: 1px solid rgba(197, 149, 91, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(197, 149, 91, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .pillar-card:hover::before {
            left: 100%;
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-dramatic);
            border-color: var(--rich-gold);
        }
        .pillar-card:hover .pillar-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .pillar-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            box-shadow: var(--shadow-gold);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .pillar-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .pillar-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .pillar-description {
            color: var(--charcoal-deep);
            line-height: 1.7;
            font-size: 1rem;
            flex: 1;
        }

        /* Mission Section */
        .mission-section {
            padding: 100px 0;
            background: var(--gradient-hero);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none"><path d="M0 10L10 0L20 10L30 0L40 10L50 0L60 10L70 0L80 10L90 0L100 10V20H0V10Z" fill="rgba(197,149,91,0.1)"/></svg>') repeat-x;
            opacity: 0.2;
        }

        .mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .mission-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--rich-gold);
        }

        .mission-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .mission-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-dramatic);
            position: relative;
        }

        .mission-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: var(--gradient-section);
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
            margin-bottom: 4rem;
        }

        .certification-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow-medium);
            border: 2px solid rgba(197, 149, 91, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .certification-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-gold);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .certification-card:hover::before {
            transform: scaleX(1);
        }

        .certification-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-dramatic);
            border-color: var(--rich-gold);
        }

        .cert-icon {
            width: 125px;
            height: 125px;
            background: var(--gradient-elegant);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--primary-navy);
            border: 3px solid var(--rich-gold);
            transition: all 0.3s ease;
            position: relative;
        }

        .certification-card:hover .cert-icon {
            transform: scale(1.1);
            background: var(--gradient-gold);
            color: white;
        }

        .cert-logo {
            max-width: 150px;
            max-height: 150px;
            object-fit: contain;
        }

        .cert-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .cert-description {
            color: var(--charcoal-deep);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .cert-badge {
            background: var(--gradient-gold);
            color: var(--primary-navy);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* TripAdvisor Specific Styling */
        .tripadvisor-cert {
            border-color: #00AA6C;
        }

        .tripadvisor-cert:hover {
            border-color: #00AA6C;
        }

        .tripadvisor-cert::before {
            background: linear-gradient(90deg, #00AA6C, #34E0A1);
        }

        .tripadvisor-badge {
            background: linear-gradient(135deg, #00AA6C 0%, #34E0A1 100%);
            color: white;
        }

        .rating-display {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .rating-text {
            color: var(--warm-gray);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Values Section */
        .values-section {
            padding: 100px 0;
            background: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .value-card {
            background: var(--gradient-elegant);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(197, 149, 91, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(53, 92, 125, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .value-card:hover::before {
            left: 100%;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: var(--nile-blue);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: white;
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon {
            transform: scale(1.1) rotate(-5deg);
            background: var(--rich-gold);
        }

        .value-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .value-description {
            color: var(--charcoal-deep);
            line-height: 1.7;
        }

        /* About CTA Section */
        .about-cta-section {
            padding: 100px 0;
            background: var(--gradient-hero);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none"><path d="M0 10L10 0L20 10L30 0L40 10L50 0L60 10L70 0L80 10L90 0L100 10V20H0V10Z" fill="rgba(197,149,91,0.1)"/></svg>') repeat-x;
            opacity: 0.3;
            animation: wave 8s ease-in-out infinite reverse;
        }

        .about-cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .about-cta-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--rich-gold);
        }

        .about-cta-description {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            line-height: 1.7;
        }

        .about-cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .about-cta-btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .about-cta-btn-primary {
            background: var(--gradient-gold);
            color: var(--primary-navy);
            box-shadow: var(--shadow-gold);
        }

        .about-cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(197, 149, 91, 0.4);
        }

        .about-cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid var(--rich-gold);
        }

        .about-cta-btn-secondary:hover {
            background: var(--rich-gold);
            color: var(--primary-navy);
            transform: translateY(-3px);
        }

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

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* TripAdvisor Image Styles */
        .tripadvisor-cert-img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        .tripadvisor-cert .cert-icon {
            background: transparent;
            border: none;
            padding: 0;
            width: 120px;
            height: 120px;
        }

        .tripadvisor-cert:hover .cert-icon {
            background: transparent;
            transform: scale(1.05);
            box-shadow: none;
        }

        .tripadvisor-cert:hover .tripadvisor-cert-img {
            transform: scale(1.05);
            filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-section {
                height: 80vh;
                padding: 2rem 1rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .container {
                padding: 0 1rem;
            }

            .story-section,
            .mission-section,
            .stats-section,
            .values-section,
            .about-cta-section {
                padding: 60px 0;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .pillar-card {
                min-height: auto;
                padding: 2rem 1.5rem;
            }
            .certifications-grid,
            .values-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .mission-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .mission-image {
                order: -1;
            }

            .mission-image img {
                height: 300px;
            }

            .about-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .about-cta-btn {
                width: 250px;
                justify-content: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .pillar-card,
            .value-card {
                padding: 2rem 1.5rem;
            }

            .certification-card {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .pillar-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }

            .value-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

