  /* Enhanced About Page Styles - Better Design */
        
        /* Better Hero Section */
        .about-hero-section {
            position: relative;
            height: 50vh;
            min-height: 500px;
            background: linear-gradient(135deg, 
                rgba(45, 80, 22, 0.85) 0%, 
                rgba(26, 48, 9, 0.95) 100%),
                url('../image/frontv1.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(45, 80, 22, 0.1) 0%, rgba(26, 48, 9, 0.3) 100%);
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(186, 172, 65, 0.15);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .particle:nth-child(1) { width: 100px; height: 100px; top: 15%; left: 15%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 60px; height: 60px; top: 25%; right: 20%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 120px; height: 120px; bottom: 25%; left: 25%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 80px; height: 80px; bottom: 35%; right: 25%; animation-delay: 6s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            25% { transform: translateY(-15px) rotate(90deg); opacity: 0.6; }
            50% { transform: translateY(-25px) rotate(180deg); opacity: 0.8; }
            75% { transform: translateY(-10px) rotate(270deg); opacity: 0.6; }
        }

        .about-hero-content {
            position: relative;
            z-index: 3;
            max-width: 900px;
            padding: 0 var(--space-20);
        }

        .about-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-8);
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-full);
            padding: var(--space-10) var(--space-20);
            margin-bottom: var(--space-24);
            font-size: var(--font-size-sm);
            font-weight: var(--font-weight-semibold);
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .about-hero-badge:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .about-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: var(--space-20);
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .about-hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: rgba(255, 255, 255, 0.92);
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: var(--space-24);
        }

        .hero-cta-button {
            display: inline-flex;
            align-items: center;
            gap: var(--space-8);
            background: var(--ayurveda-gold);
            color: var(--ayurveda-primary-dark);
            padding: var(--space-12) var(--space-24);
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: 600;
            font-size: var(--font-size-base);
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(186, 172, 65, 0.3);
            border: 2px solid transparent;
        }

        .hero-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(186, 172, 65, 0.4);
            background: rgba(186, 172, 65, 0.9);
            border-color: rgba(255, 255, 255, 0.3);
            color: var(--ayurveda-primary-dark);
        }

        /* Enhanced Welcome Section */
        .welcome-section-enhanced {
            padding: var(--space-32) 0 var(--space-32) 0;
            background: var(--color-surface);
            position: relative;
            overflow: hidden;
        }

        .welcome-section-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(34, 197, 94, 0.02) 0%, 
                rgba(186, 172, 65, 0.03) 100%);
            z-index: 1;
        }

        .welcome-content-wrapper {
            position: relative;
            z-index: 2;
        }

        .enhanced-section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            color: var(--ayurveda-primary);
            margin-bottom: var(--space-20);
            position: relative;
            text-align: center;
        }

        .enhanced-section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--ayurveda-primary) 0%, var(--ayurveda-gold) 100%);
            border-radius: var(--radius-sm);
        }

        .enhanced-content-text {
            font-size: var(--font-size-lg);
            line-height: 1.7;
            color: var(--color-text-secondary);
            text-align: justify;
            margin-bottom: var(--space-24);
        }

        /* Premium Feature Cards */
        .premium-feature-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: var(--space-24);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(45, 80, 22, 0.08);
            position: relative;
            overflow: hidden;
        }

        .premium-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--ayurveda-primary) 0%, var(--ayurveda-gold) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .premium-feature-card:hover::before {
            transform: scaleX(1);
        }

        .premium-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            border-color: rgba(45, 80, 22, 0.15);
        }

        .premium-service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--ayurveda-primary) 0%, var(--ayurveda-primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-20);
            color: white;
            font-size: var(--font-size-2xl);
            position: relative;
            transition: all 0.4s ease;
        }

        .premium-service-icon::after {
            content: '';
            position: absolute;
            inset: -4px;
            background: linear-gradient(135deg, var(--ayurveda-primary) 0%, var(--ayurveda-gold) 100%);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .premium-feature-card:hover .premium-service-icon::after {
            opacity: 0.3;
        }

        .premium-feature-card:hover .premium-service-icon {
            transform: scale(1.1);
        }

        .premium-feature-card h4 {
            font-family: 'Lora', serif;
            color: var(--ayurveda-primary);
            margin-bottom: var(--space-16);
            font-size: var(--font-size-xl);
            font-weight: 600;
        }

        .premium-feature-card p {
            color: var(--color-text-secondary);
            line-height: 1.6;
            text-align: justify;
            font-size: var(--font-size-base);
        }

        /* Enhanced Legacy Section */
        .legacy-section-enhanced {
            padding: var(--space-32) 0;
            background: linear-gradient(135deg, 
                var(--ayurveda-cream) 0%, 
                var(--ayurveda-beige) 100%);
            position: relative;
            overflow: hidden;
        }

        .legacy-section-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(45,80,22,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
            z-index: 1;
        }

        .legacy-premium-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            padding: var(--space-32);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .legacy-premium-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, 
                var(--ayurveda-primary) 0%, 
                var(--ayurveda-gold) 50%, 
                var(--ayurveda-primary-light) 100%);
        }

        .legacy-content-enhanced {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .legacy-content-enhanced h2 {
            font-family: 'Playfair Display', serif;
            color: var(--ayurveda-primary);
            margin-bottom: var(--space-16);
            font-size: clamp(1.8rem, 4vw, 2.5rem);
        }

        .legacy-content-enhanced h3 {
            color: var(--ayurveda-gold);
            margin-bottom: var(--space-20);
            font-weight: 500;
            font-style: italic;
        }

        .enhanced-vision-quote {
            background: linear-gradient(135deg, 
                rgba(45, 80, 22, 0.06) 0%, 
                rgba(186, 172, 65, 0.06) 100%);
            border-left: 5px solid var(--ayurveda-gold);
            border-radius: var(--radius-base);
            padding: var(--space-24);
            margin-top: var(--space-24);
            position: relative;
            font-style: italic;
            color: var(--ayurveda-primary);
            font-weight: 500;
            font-size: var(--font-size-lg);
            line-height: 1.7;
            text-align: justify;
        }

        .enhanced-vision-quote::before {
            content: '"';
            position: absolute;
            top: -15px;
            left: var(--space-16);
            font-size: 4rem;
            color: var(--ayurveda-gold);
            font-family: 'Playfair Display', serif;
            opacity: 0.7;
        }

        /* Enhanced Founder Section */
        .founder-section-enhanced {
            padding: var(--space-32) 0;
            background: var(--color-surface);
            position: relative;
        }

        .founder-enhanced-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: var(--space-32);
            align-items: center;
        }

        .founder-image-enhanced {
            position: relative;
        }

        .founder-portrait {
            width: 100%;
            max-width: 400px;
            height: 500px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
            position: relative;
            margin: 0 auto;
            background: url('../image/founder.jpeg') center/cover no-repeat;
            transition: transform 0.6s ease;
        }

        .founder-portrait::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, 
                rgba(45, 80, 22, 0.1) 0%, 
                transparent 50%, 
                rgba(186, 172, 65, 0.05) 100%);
        }

        .founder-section-enhanced:hover .founder-portrait {
            transform: scale(1.02);
        }

        .founder-content-enhanced h2 {
            font-family: 'Playfair Display', serif;
            color: var(--ayurveda-primary);
            margin-bottom: var(--space-16);
            font-size: clamp(1.8rem, 3vw, 2.5rem);
        }

        .founder-content-enhanced p {
            text-align: justify;
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: var(--space-16);
            font-size: var(--font-size-base);
        }

        .founder-highlights-enhanced {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-20);
            margin-top: var(--space-24);
        }

        .founder-highlight-enhanced {
            background: linear-gradient(135deg, 
                rgba(34, 197, 94, 0.04) 0%, 
                rgba(186, 172, 65, 0.04) 100%);
            padding: var(--space-20);
            border-radius: var(--radius-base);
            border-left: 4px solid var(--ayurveda-gold);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .founder-highlight-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, rgba(186, 172, 65, 0.1) 0%, transparent 70%);
        }

        .founder-highlight-enhanced:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }

        .founder-highlight-enhanced h5 {
            color: var(--ayurveda-primary);
            margin-bottom: var(--space-8);
            font-size: var(--font-size-md);
            font-weight: 600;
        }

        .founder-highlight-enhanced p {
            font-size: var(--font-size-sm);
            margin: 0;
            text-align: justify;
        }

        /* Enhanced Timeline */
        .journey-section-enhanced {
            padding: var(--space-32) 0;
            background: linear-gradient(135deg, 
                var(--ayurveda-cream) 0%, 
                var(--ayurveda-beige) 100%);
            position: relative;
            overflow: hidden;
        }

        .timeline-enhanced {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            padding: var(--space-32) 0;
        }

        .timeline-enhanced::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, 
                var(--ayurveda-primary) 0%, 
                var(--ayurveda-gold) 50%, 
                var(--ayurveda-primary-light) 100%);
            transform: translateX(-50%);
            border-radius: var(--radius-full);
        }

        .timeline-item-enhanced {
            display: flex;
            justify-content: center;
            margin-bottom: var(--space-32);
            position: relative;
        }

        .timeline-item-enhanced:nth-child(odd) .timeline-content-enhanced {
            margin-right: calc(50% + var(--space-32));
            text-align: right;
        }

        .timeline-item-enhanced:nth-child(even) .timeline-content-enhanced {
            margin-left: calc(50% + var(--space-32));
            text-align: left;
        }

        .timeline-content-enhanced {
            width: 45%;
            position: relative;
        }

        .timeline-card-enhanced {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            padding: var(--space-24);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.6);
            position: relative;
            overflow: hidden;
        }

        .timeline-card-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                var(--ayurveda-primary) 0%, 
                var(--ayurveda-gold) 100%);
        }

        .timeline-card-enhanced:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
        }

        .timeline-image-enhanced {
            width: 100%;
            height: 180px;
            border-radius: var(--radius-base);
            overflow: hidden;
            margin-bottom: var(--space-16);
            background-size: cover;
            background-position: center;
            position: relative;
            transition: transform 0.6s ease;
        }

        .timeline-image-enhanced::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, 
                rgba(45, 80, 22, 0.1) 0%, 
                transparent 100%);
        }

        .timeline-card-enhanced:hover .timeline-image-enhanced {
            transform: scale(1.05);
        }

        .timeline-year-enhanced {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--ayurveda-gold) 0%, #c9941f 100%);
            color: var(--ayurveda-primary-dark);
            padding: var(--space-8) var(--space-16);
            border-radius: var(--radius-full);
            font-size: var(--font-size-sm);
            font-weight: 700;
            margin-bottom: var(--space-12);
            box-shadow: 0 4px 15px rgba(186, 172, 65, 0.3);
        }

        .timeline-title-enhanced {
            color: var(--ayurveda-primary);
            margin-bottom: var(--space-12);
            font-size: var(--font-size-xl);
            font-weight: 600;
            font-family: 'Lora', serif;
        }

        .timeline-description-enhanced {
            color: var(--color-text-secondary);
            line-height: 1.6;
            font-size: var(--font-size-base);
            text-align: justify;
        }

        .timeline-dot-enhanced {
            position: absolute;
            left: 50%;
            top: var(--space-24);
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--ayurveda-gold);
            border: 5px solid var(--ayurveda-primary);
            border-radius: 50%;
            box-shadow: 0 0 0 6px rgba(186, 172, 65, 0.2);
            z-index: 10;
            transition: all 0.4s ease;
        }

        .timeline-item-enhanced:hover .timeline-dot-enhanced {
            transform: translateX(-50%) scale(1.3);
            box-shadow: 0 0 0 8px rgba(186, 172, 65, 0.3);
        }

        /* Enhanced Mission & Vision */
        .mission-vision-enhanced {
            padding: var(--space-32) 0;
            background: var(--color-surface);
            position: relative;
        }

        .mission-vision-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, 
                rgba(34, 197, 94, 0.02) 0%, 
                rgba(186, 172, 65, 0.03) 100%);
        }

        .mission-vision-grid-enhanced {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-24);
            margin-top: var(--space-24);
            position: relative;
            z-index: 2;
        }

        .mission-card-enhanced, .vision-card-enhanced {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.9) 0%, 
                rgba(255, 255, 255, 0.95) 100%);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            padding: var(--space-32);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(45, 80, 22, 0.1);
            position: relative;
            overflow: hidden;
        }

        .mission-card-enhanced::before,
        .vision-card-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--ayurveda-primary) 0%, var(--ayurveda-gold) 100%);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .mission-card-enhanced:hover::before,
        .vision-card-enhanced:hover::before {
            transform: scaleX(1);
        }

        .mission-card-enhanced:hover,
        .vision-card-enhanced:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
        }

        .mission-card-enhanced h3,
        .vision-card-enhanced h3 {
            font-family: 'Playfair Display', serif;
            color: var(--ayurveda-primary);
            margin-bottom: var(--space-20);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-16);
            font-size: var(--font-size-2xl);
            font-weight: 600;
        }

        .mission-vision-icon-enhanced {
            width: 40px;
            height: 40px;
            color: var(--ayurveda-gold);
            filter: drop-shadow(0 4px 8px rgba(186, 172, 65, 0.3));
        }

        .mission-vision-text-enhanced {
            color: var(--color-text-secondary);
            line-height: 1.7;
            text-align: justify;
            font-size: var(--font-size-base);
            margin: 0;
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1199.98px) {
            .founder-enhanced-grid {
                grid-template-columns: 1fr;
                gap: var(--space-24);
                text-align: center;
            }
            
            .timeline-item-enhanced:nth-child(odd) .timeline-content-enhanced,
            .timeline-item-enhanced:nth-child(even) .timeline-content-enhanced {
                text-align: center;
            }
        }

        @media (max-width: 991.98px) {
            .founder-highlights-enhanced {
                grid-template-columns: 1fr;
            }
            
            .mission-vision-grid-enhanced {
                grid-template-columns: 1fr;
                gap: var(--space-20);
            }
        }

        @media (max-width: 767.98px) {
            .about-hero-section {
                height: 45vh;
                min-height: 400px;
            }
            
            .timeline-enhanced::before {
                left: var(--space-20);
            }
            
            .timeline-item-enhanced:nth-child(odd) .timeline-content-enhanced,
            .timeline-item-enhanced:nth-child(even) .timeline-content-enhanced {
                width: calc(100% - var(--space-32));
                margin-left: var(--space-32);
                margin-right: 0;
                text-align: left;
            }
            
            .timeline-dot-enhanced {
                left: var(--space-20);
            }
            
            .premium-feature-card,
            .mission-card-enhanced,
            .vision-card-enhanced {
                margin-bottom: var(--space-20);
            }
        }

        @media (max-width: 575.98px) {
            .about-hero-title {
                font-size: 2.2rem;
            }
            
            .enhanced-section-title {
                font-size: 1.8rem;
            }
            
            .founder-portrait {
                height: 350px;
            }
            
            .timeline-image-enhanced {
                height: 140px;
            }
        }

        /* Enhanced Scroll Animations */
        .fade-up-stagger {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-up-stagger.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }