        /* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-primary: #1a365d;
            --color-secondary: #3182ce;
            --color-accent: #ed8936;
            --color-light: #f7fafc;
            --color-gray: #718096;
            --color-dark: #2d3748;
            --color-white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
            --border-radius: 16px;
            --transition: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--color-primary);
            background-color: var(--color-white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
            color: #444;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--color-secondary), #2c5282);
            color: var(--color-white);
            padding: 1.25rem 3rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.25rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn:active {
            transform: translateY(-1px);
        }

        .section {
            padding: 6rem 0;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--color-white);
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://myphotohero.com/assets/img/sample/010.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: 1;
        }

        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(49, 130, 206, 0.75) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 900px;
            padding: 3rem;
            text-align: center;
        }

        .hero-text-container {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            border-radius: var(--border-radius);
            padding: 3rem 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            margin-bottom: 2rem;
        }

        .hero h1 {
            font-size: clamp(2.75rem, 5vw, 4.5rem);
            margin-bottom: 2rem;
            color: var(--color-white);
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 0;
            font-weight: 700;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #f0f9ff;
            text-shadow: 0 1px 4px rgba(0,0,0,0.3);
        }

        .hero-cta {
            margin-top: 3rem;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        .scroll-indicator svg {
            width: 30px;
            height: 30px;
            fill: var(--color-white);
            opacity: 0.9;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        /* Normalization Section */
        .normalization {
            background-color: var(--color-light);
            position: relative;
        }

        .normalization::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, rgba(26, 54, 93, 0.1), transparent);
            pointer-events: none;
        }

        .normalization-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .normalization h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--color-primary);
            margin-bottom: 2.5rem;
        }

        .normalization-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .image-card {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            background: var(--color-white);
        }

        .image-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .image-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }

        .image-card:hover img {
            transform: scale(1.05);
        }

        .image-caption {
            padding: 1.5rem;
            font-size: 1rem;
            color: var(--color-gray);
            line-height: 1.5;
            border-top: 1px solid #e2e8f0;
        }

        /* Expectation Section */
        .expectation {
            background-color: var(--color-white);
        }

        .expectation-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .expectation h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--color-primary);
            margin-bottom: 2.5rem;
        }

        .expectation-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .feature {
            padding: 2.5rem 2rem;
            background: linear-gradient(135deg, var(--color-light), #e6fffa);
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }

        .feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--color-secondary);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--color-secondary);
        }

        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--color-primary);
        }

        .feature p {
            font-size: 1.1rem;
            color: #555;
        }

        /* Final CTA Section */
        .final-cta {
            background: linear-gradient(135deg, #f7fafc 0%, #e6fffa 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
            pointer-events: none;
        }

        .final-cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--color-primary);
            margin-bottom: 1.5rem;
        }

        .final-cta p {
            font-size: 1.25rem;
            max-width: 600px;
            margin: 0 auto 3rem;
            color: #555;
        }

        .quiet-line {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.1);
            font-size: 1.1rem;
            color: var(--color-gray);
            font-style: italic;
        }

        /* Footer */
        .footer {
            background-color: #1a202c;
            color: #e2e8f0;
            padding: 4rem 0 3rem;
            text-align: center;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-white);
        }

        .footer-tagline {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            color: #cbd5e0;
        }

        .footer-legal {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #a0aec0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .section {
                padding: 4rem 0;
            }
            
            .hero {
                min-height: 90vh;
            }
            
            .hero-content {
                padding: 2rem 1.5rem;
            }
            
            .hero-text-container {
                padding: 2.5rem 1.5rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.4rem;
            }
            
            .normalization-images {
                grid-template-columns: 1fr;
            }
            
            .expectation-features {
                grid-template-columns: 1fr;
            }
            
            .btn {
                width: 100%;
                max-width: 350px;
                padding: 1.25rem 2rem;
            }
            
            .scroll-indicator {
                bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            
            .hero h1 {
                font-size: 2.25rem;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
            }
            
            .hero-text-container {
                padding: 2rem 1.25rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .feature {
                padding: 2rem 1.5rem;
            }
        }

        /* Smooth fade-in animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
		
		
		
		
/* Testimonial Feature Variant */
.testimonial-feature {
    background: linear-gradient(135deg, #fffdf5, #fefaf0);
    border-color: #f1e8c9;
    max-width: 520px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #3f3f3f;
    margin-bottom: 2rem;
}

.testimonial-signature {
    font-size: 0.95rem;
    color: var(--color-gray);
}

.testimonial-signature span {
    font-size: 0.9rem;
}
