 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --color-primary: #003e50;
            --color-primary-light: #004f5d;
            --color-accent: #0010a5;
            --color-accent-light: #2a0072;
            --color-success: #006aff;
            --color-warning: #004b5b;
            --color-danger: #000078;
            --color-text-dark: #0f172a;
            --color-text-light: #003784;
            --color-bg-light: #f8fafc;
            --color-bg-white: #ffffff;
            --color-gradient-start: #00515f;
            --color-gradient-end: #00576d;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--color-text-dark);
            background-color: var(--color-bg-light);
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            color: var(--color-primary);
            line-height: 1.3;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* <CHANGE> Enhanced header with subtle shadow and better spacing */
        header {
            background: var(--color-bg-white);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 0;
        }
        
        /* <CHANGE> Updated logo with teal gradient */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--color-primary);
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .logo img{
            width: 60px;
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }
        
        nav a {
            text-decoration: none;
            color: var(--color-text-dark);
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.95rem;
            position: relative;
        }
        
        /* <CHANGE> Added underline animation on hover */
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-primary-light);
            transition: width 0.3s ease;
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }
        
        nav a:hover,
        nav a.active {
            color: var(--color-primary-light);
        }
        
        /* <CHANGE> Enhanced hero with modern gradient and better layout */
        .hero {
            position: relative;
            color: white;
            padding: 5rem 0;
            overflow: hidden;
        
            /* ✅ Background image + gradient overlay */
            background: 
                linear-gradient(135deg, rgba(0, 64, 80, 0.8) 0%, rgba(0, 72, 84, 0.8) 50%, rgba(0, 49, 62, 0.8) 100%),
                url("../../static.vecteezy.com/system/resources/thumbnails/002/883/744/small/hand-holding-growing-tree-on-coins-with-stock-graph-over-green-background-photo.jpg");
        
            background-size: cover;       /* make it cover entire section */
            background-position: center;  /* center the image */
            background-repeat: no-repeat;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        
            /* ✅ Decorative radial gradients */
            background: radial-gradient(circle at 20% 50%, rgba(251, 146, 60, 0.15), transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.2), transparent 50%);
            z-index: 1;
        }
        
        .hero .container {
            position: relative;
            z-index: 2; /* keeps content above overlays */
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
        }

        .hero-content {
            max-width: 600px;
        }

        /* <CHANGE> Enhanced badge with coral accent */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(12px);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(60, 63, 251, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .hero h1 {
            font-size: 3.25rem;
            font-weight: 800;
            margin-bottom: 1.25rem;
            color: white;
            line-height: 1.15;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        /* <CHANGE> Enhanced stats with better visual hierarchy */
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2.5rem;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            right: -1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
        }

        .stat-item:last-child::after {
            display: none;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            display: block;
            line-height: 1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 10px;
            display: block;
            font-weight: 500;
        }

        /* <CHANGE> Enhanced hero image with modern styling */
        .hero-image img {
            width: 100%;
            max-width: 550px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            border: 4px solid rgba(255, 255, 255, 0.1);
        }

        .hero-image img:hover {
            transform: scale(1.03) translateY(-8px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        }

        @media (max-width: 992px) {
            .hero-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content {
                margin: 0 auto;
            }
            .hero-stats {
                justify-content: center;
            }
            .hero-image {
                margin-top: 2.5rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }

        /* <CHANGE> Enhanced trust section with better visual appeal */
        .trust-section {
            background: white;
            padding: 2.5rem 0;
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--color-text-dark);
            font-size: 0.95rem;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .trust-badge:hover {
            transform: translateY(-2px);
        }

        .trust-icon {
            width: 28px;
            height: 28px;
            color: var(--color-success);
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ecfdf5;
            border-radius: 50%;
            padding: 6px;
        }

        /* Main Content Layout */
        .main-content {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 48px;
            padding: 60px 0;
        }
        
        .review-sidebar {
            order: 2;
        }
        
        .review-main {
            order: 1;
        }

        /* <CHANGE> Enhanced summary box with modern card design */
        .summary-box {
            background: var(--color-bg-white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            position: sticky;
            top: 7rem;
            border: 1px solid #e2e8f0;
            transition: box-shadow 0.3s ease;
        }

        .summary-box:hover {
            box-shadow: var(--shadow-xl);
        }

        .company-header {
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 2px solid #f1f5f9;
            margin-bottom: 2rem;
        }

        /* <CHANGE> Enhanced company logo with gradient border */
        .company-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 3px solid transparent;
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(135deg, var(--color-gradient-start), var(--color-accent-light)) border-box;
        }

        .company-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .company-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .company-tagline {
            color: var(--color-text-light);
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* <CHANGE> Updated rating display with teal/coral gradient */
        .rating-display {
            text-align: center;
            padding: 2.5rem;
            background: linear-gradient(135deg, #cffafe 0%, #e0f2fe 50%, #c3b1ff 100%);
            border-radius: 16px;
            margin-bottom: 2rem;
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .rating-score {
            font-size: 4.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        
        .stars {
            font-size: 2rem;
            color: var(--color-accent);
            margin: 1rem 0;
            letter-spacing: 4px;
        }
        
        .rating-text {
            color: var(--color-text-dark);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .rating-breakdown {
            margin: 1.5rem 0;
        }

        .rating-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            font-size: 0.85rem;
        }

        .rating-bar-label {
            min-width: 60px;
            color: var(--color-text-light);
            font-weight: 600;
        }

        .rating-bar-fill {
            flex: 1;
            height: 10px;
            background: #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
        }

        /* <CHANGE> Updated rating bar with coral gradient */
        .rating-bar-inner {
            height: 100%;
            background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
            border-radius: 10px;
            transition: width 0.8s ease;
            box-shadow: 0 2px 4px rgba(249, 115, 22, 0.3);
        }

        .rating-bar-count {
            min-width: 40px;
            text-align: right;
            color: var(--color-text-dark);
            font-weight: 700;
        }

        /* Loan Features */
        .loan-features h3 {
            font-size: 1.25rem;
            margin: 2rem 0 1.25rem;
            color: var(--color-primary);
            font-weight: 700;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.1rem 0;
            border-bottom: 1px solid #f1f5f9;
            font-size: 0.9rem;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list .label {
            color: var(--color-text-light);
            font-weight: 500;
        }

        .feature-list .value {
            font-weight: 700;
            color: var(--color-primary);
            text-align: right;
        }

        /* <CHANGE> Enhanced pros/cons with modern styling */
        .pros-cons {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        
        .pros, .cons {
            padding: 1.5rem;
            border-radius: 14px;
            font-size: 0.9rem;
            box-shadow: var(--shadow-sm);
        }
        
        .pros {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border: 2px solid var(--color-success);
        }
        
        .cons {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border: 2px solid var(--color-danger);
        }
        
        .pros h4, .cons h4 {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .pros h4 { color: var(--color-success); }
        .cons h4 { color: var(--color-danger); }
        
        .pros ul, .cons ul {
            list-style: none;
            padding-left: 0;
        }

        .pros li, .cons li {
            padding: 8px 0;
            line-height: 1.6;
        }

        .pros li::before { 
            content: '✓ '; 
            color: var(--color-success); 
            font-weight: bold; 
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .cons li::before { 
            content: '✕ '; 
            color: var(--color-danger); 
            font-weight: bold; 
            margin-right: 10px;
            font-size: 1.1rem;
        }

        /* <CHANGE> Enhanced CTA button with teal gradient */
        .btn-primary {
            background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
            color: white;
            padding: 1.1rem 2rem;
            text-decoration: none;
            border-radius: 14px;
            font-weight: 700;
            display: block;
            text-align: center;
            margin-top: 2rem;
            box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(6, 182, 212, 0.45);
            background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
        }

        /* Review Section */
        .recent-reviews h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-primary);
        }

        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #e2e8f0;
        }

        .reviews-filter {
            display: flex;
            gap: 1rem;
        }

        /* <CHANGE> Enhanced filter buttons with modern styling */
        .filter-btn {
            padding: 10px 20px;
            border: 2px solid #e2e8f0;
            background: white;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--color-text-dark);
        }

        .filter-btn:hover {
            border-color: var(--color-primary-light);
            color: var(--color-primary-light);
            background: #ecfeff;
            transform: translateY(-2px);
        }

        .filter-btn.active {
            border-color: var(--color-primary);
            color: white;
            background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
            box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
        }

        /* <CHANGE> Enhanced video testimonial section */
        .video-testimonial {
            background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
            padding: 3rem;
            margin-bottom: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            border: 2px solid #ccfbf1;
        }

        .video-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 1.75rem;
        }

        /* <CHANGE> Updated video badge with coral gradient */
        .video-badge {
            background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        }

        .video-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--color-primary);
        }

        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .video-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* <CHANGE> Enhanced play button with teal accent */
        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        .video-play-btn:hover {
            transform: translate(-50%, -50%) scale(1.15);
            background: white;
            box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
        }

        .video-play-btn::after {
            content: "";
            width: 0;
            height: 0;
            border-left: 28px solid var(--color-primary-light);
            border-top: 16px solid transparent;
            border-bottom: 16px solid transparent;
            margin-left: 6px;
        }

        .video-caption {
            margin-top: 1.5rem;
            color: var(--color-text-light);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .video-caption strong {
            color: var(--color-primary);
            font-weight: 700;
        }

        /* <CHANGE> Enhanced review cards with modern design */
        .review-card {
            background: var(--color-bg-white);
            padding: 2.25rem;
            margin-bottom: 1.75rem;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }
        
        .review-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--color-primary-light);
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        /* <CHANGE> Enhanced avatar with gradient border */
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid transparent;
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(135deg, var(--color-gradient-start), var(--color-accent-light)) border-box;
            flex-shrink: 0;
            box-shadow: var(--shadow-md);
        }

        .reviewer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .reviewer-details {
            line-height: 1.5;
        }

        .reviewer-name {
            font-weight: 700;
            color: var(--color-primary);
            font-size: 1.15rem;
            display: block;
        }

        /* <CHANGE> Updated verified badge with teal accent */
        .reviewer-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: linear-gradient(135deg, #ecfeff, #cffafe);
            color: var(--color-primary);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-top: 4px;
            border: 1px solid var(--color-primary-light);
        }
        
        .review-date {
            color: var(--color-text-light);
            font-size: 0.85rem;
            display: block;
            margin-top: 4px;
        }
        
        .review-stars {
            color: var(--color-accent);
            font-size: 1.3rem;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .review-rating-number {
            font-weight: 700;
            color: var(--color-text-dark);
            font-size: 1.15rem;
        }
        
        .review-snippet {
            color: var(--color-text-dark);
            margin: 1.5rem 0;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .review-snippet strong {
            color: var(--color-primary);
        }

        .review-helpful {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #f1f5f9;
        }

        /* <CHANGE> Enhanced helpful button */
        .helpful-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border: 2px solid #e2e8f0;
            background: white;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-text-light);
            cursor: pointer;
            transition: all 0.3s;
        }

        .helpful-btn:hover {
            border-color: var(--color-primary-light);
            color: var(--color-primary-light);
            background: #ecfeff;
            transform: translateY(-2px);
        }
        
        .read-more {
            color: var(--color-primary-light);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s ease;
        }
        
        .read-more:hover {
            gap: 10px;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 3rem 0;
        }

        .cta-section .btn-primary {
            display: inline-block;
            width: auto;
            padding: 1.35rem 3.5rem;
            font-size: 1.1rem;
        }

        /* <CHANGE> Enhanced footer with modern styling */
        footer {
            background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
            color: #cbd5e1;
            padding: 4rem 0 2rem;
            margin-top: 5rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo-section {
            max-width: 350px;
        }

        .footer-logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .footer-info p {
            margin-top: 1rem;
            font-size: 0.9rem;
            line-height: 1.7;
            color: #cbd5e1;
        }

        .footer-nav h4 {
            font-size: 1.1rem;
            color: white;
            margin-bottom: 1.25rem;
            font-weight: 700;
        }
        
        .footer-nav ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-nav a {
            color: #cbd5e1;
            text-decoration: none;
            display: block;
            padding: 6px 0;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .footer-nav a:hover {
            color: white;
            padding-left: 8px;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
            color: #cbd5e1;
            font-size: 0.85rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }

            .review-sidebar {
                order: 1;
            }
            
            .review-main {
                order: 2;
            }

            .summary-box {
                position: static;
                top: auto;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .footer-logo-section {
                grid-column: 1 / -1;
            }
        }

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

            .hero-stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .trust-badges {
                gap: 1.5rem;
            }

            .reviews-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .reviews-header {
                margin: 0 50px;
            }

            .cta-section a {
                font-size: 15px;
                width: 315px;
            }

            .video-testimonial {
                padding: 2rem;
            }
        }

        @media (max-width: 600px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav ul {
                gap: 1.5rem;
            }

            .hero {
                padding: 3rem 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .stat-item::after {
                display: none;
            }

            .main-content {
                padding: 30px 0;
            }

            .reviewer-info {
                flex-direction: column;
                align-items: flex-start;
            }

            .review-header {
                flex-direction: column;
                gap: 1rem;
            }
        } 
        #typing {
            font-size: 3rem;
            font-weight: bold;
            border-right: 2px solid #333;
            white-space: normal; 
            word-wrap: break-word;
            max-width: 500px;
            height: 180px; 
            overflow: hidden;
        }
