        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        a {
            color: #4a90e2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            color: white;
            padding: 80px 0 120px;
            overflow: hidden;
            position: relative;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero {
                padding: 60px 0 80px;
            }
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            width: fit-content;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin: 0;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }

        .hero .highlight {
            color: #fbbf24;
        }

        .hero p {
            font-size: 1.25rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-primary {
            background: #fbbf24;
            color: #000;
        }

        .btn-primary:hover {
            background: #f59e0b;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #000;
        }

        .hero-image {
            position: relative;
            text-align: center;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(236, 72, 153, 0.2));
            border-radius: 50%;
            filter: blur(60px);
        }

        .hero-image img {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 500px;
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #1f2937;
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
        }

        .section-title p {
            font-size: 1.25rem;
            color: #6b7280;
            max-width: 768px;
            margin: 0 auto;
        }

        /* Card Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .card {
            background: white;
            border-radius: 12px;
            padding: 32px 24px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #1f2937;
        }

        .card p {
            color: #6b7280;
            flex-grow: 1;
        }

        /* Benefits Cards */
        .benefits-card {
            border-left: 4px solid #2563eb;
        }

        .benefits-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .benefits-icon {
            font-size: 2rem;
        }

        /* Case Study Cards */
        .case-study-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .case-study-info h3 {
            margin-bottom: 4px;
        }

        .case-study-location {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .inch-loss-badge {
            background: #d1fae5;
            color: #065f46;
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 0.875rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .results-list {
            list-style: none;
            margin: 16px 0;
        }

        .results-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #6b7280;
        }

        .checkmark {
            color: #10b981;
            font-weight: bold;
            margin-top: 2px;
        }

        .testimonial {
            border-top: 1px solid #e5e7eb;
            padding-top: 16px;
            margin-top: 16px;
        }

        .testimonial p {
            font-style: italic;
            color: #374151;
            margin-bottom: 8px;
        }

        .testimonial-author {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .testimonial blockquote {
          font-style: italic;
          color: #666;
          border-left: 4px solid #4a90e2;
          padding-left: 15px;
          margin-top: 15px;
        }

        /* Quick Benefits Section */
        .quick-benefits {
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            color: white;
            padding: 64px 0;
        }

        .quick-benefits h2 {
            color: white;
            text-align: center;
            margin-bottom: 48px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .benefit-item {
            text-align: center;
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .benefit-item h3 {
            font-weight: 600;
            margin-bottom: 8px;
            color: white;
        }

        .benefit-item p {
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            background: #f9fafb;
            text-align: center;
        }

        .cta-content {
            max-width: 768px;
            margin: 0 auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin: 32px 0;
            flex-wrap: wrap;
        }

        .btn-blue {
            background: #2563eb;
            color: white;
        }

        .btn-blue:hover {
            background: #1d4ed8;
        }

        .btn-outline-dark {
            background: transparent;
            color: #374151;
            border: 2px solid #d1d5db;
        }

        .btn-outline-dark:hover {
            background: #374151;
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid #e5e7eb;
        }

        .feature-item {
            text-align: center;
        }

        .feature-item h3 {
            font-weight: 600;
            margin-bottom: 8px;
            color: #1f2937;
        }

        .feature-item p {
            color: #6b7280;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: white;
        }

        .faq-item {
            background: #f8f9fa;
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            background: #667eea;
            color: white;
            padding: 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #5a67d8;
        }

        .faq-answer {
            padding: 20px;
            display: none;
            line-height: 1.6;
            color: #666;
        }

        /* Footer */
        footer {
            background: #111827;
            color: #9ca3af;
            text-align: center;
            padding: 40px 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-section h4 {
            margin-bottom: 15px;
            color: #4a90e2;
        }

        .footer {
            background: #111827;
            color: white;
            padding: 32px 0;
            text-align: center;
        }

        /* Background variations */
        .bg-white {
            background: white;
        }

        .bg-green {
            background: #d1fae5;
        }

        .bg-gray-50 {
            background: #f9fafb;
        }

	/* Modal styles for image zoom */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            cursor: pointer;
        }

        .image-modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 10000;
        }

        .close-modal:hover {
            opacity: 0.7;
        }

        /* Make hero image clickable */
        .hero-image img {
            cursor: pointer;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .hero-image img:hover {
            transform: scale(1.02);
            opacity: 0.9;
        }

        /* Add a subtle indicator that image is clickable */
        .hero-image {
            position: relative;
        }

        .hero-image:hover::after {
            opacity: 1;
        }
