:root {
            --primary: #ff7eb3;
            --primary-dark: #ff5c9e;
            --primary-light: #ffd1e6;
            --secondary: #4a4de7;
            --accent: #21d0c0;
            --dark: #2d2e4a;
            --light: #ffffff;
            --light-gray: #f8f9fa;
            --gray: #6c757d;
        }

        /* Base Styles */
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .section-title {
            position: relative;
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
        }

        /* Header & Navigation */
        .header {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .brand {
            display: flex;
            align-items: center;
        }

        .logo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            border: 2px solid white;
        }

        .brand-name {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            margin-left: 12px;
            color: var(--primary-dark);
            margin-bottom: 0;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        .youtube {
            background: #FF0000;
        }

        .whatsapp {
            background: #25D366;
        }

        .social-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding-top: 100px;
            background: linear-gradient(135deg, rgba(255, 209, 230, 0.8), rgba(240, 240, 255, 0.8)), url('/api/placeholder/1200/600') center/cover no-repeat;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/api/placeholder/150/150') repeat;
            opacity: 0.03;
            z-index: 1;
        }

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

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            color: var(--gray);
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.2s;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-primary-custom {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(255, 124, 179, 0.4);
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 124, 179, 0.5);
        }

        .locations-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInRight 1s ease-out 0.4s;
            animation-fill-mode: both;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .locations-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            text-align: center;
        }

        .locations-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .location-item {
            display: flex;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        }

        .location-item:last-child {
            border-bottom: none;
        }

        .location-icon {
            color: var(--accent);
            margin-right: 12px;
            font-size: 1.2rem;
        }

        .location-name {
            font-weight: 500;
            color: var(--secondary);
            font-size: 1.1rem;
        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background-color: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: "";
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 200px;
            background: white;
            border-radius: 0 0 50% 50% / 0 0 100% 100%;
        }

        .service-card {
            position: relative;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
            border: none;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 1.5rem;
            text-align: center;
        }

        .service-price {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }

        .service-duration {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .service-name {
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .service-desc {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: white;
            text-align: center;
        }

        .stats-intro {
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .stats-subtitle {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 1rem;
        }

        .stats-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .stats-description {
            color: var(--gray);
            font-size: 1.1rem;
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .stat-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            width: 260px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .stat-card:hover {
            transform: translateY(-10px);
        }

        .stat-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            z-index: -1;
        }

        .stat-card:nth-child(1)::before {
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
        }

        .stat-card:nth-child(2)::before {
            background: linear-gradient(90deg, var(--accent), #7fffd4);
        }

        .stat-card:nth-child(3)::before {
            background: linear-gradient(90deg, var(--secondary), #a0a0ff);
        }

        .stat-card:nth-child(4)::before {
            background: linear-gradient(90deg, #ffc107, #ffe082);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-text {
            font-weight: 500;
            color: var(--gray);
            font-size: 1.1rem;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--dark), #1e1e30);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/api/placeholder/100/100') repeat;
            opacity: 0.03;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            font-size: 1.4rem;
        }

        .footer-divider {
            width: 60px;
            height: 3px;
            background: var(--primary);
            margin-bottom: 20px;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .footer-icon {
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
        }

        .footer-contact-text {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .footer-social-icon:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            text-align: center;
            font-size: 0.9rem;
        }

        .footer-link {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.8rem;
            }

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

            .locations-card {
                margin-top: 3rem;
            }

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

        @media (max-width: 767px) {
            .header-content {
                padding: 0 1rem;
            }

            .brand-name {
                font-size: 1.2rem;
            }

            .hero {
                min-height: auto;
                padding-top: 80px;
                padding-bottom: 40px;
            }

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

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

            .btn-primary-custom {
                padding: 10px 25px;
                font-size: 0.8rem;
            }

            .locations-title {
                font-size: 1.5rem;
            }

            .location-name {
                font-size: 1rem;
            }

            .stat-card {
                width: 100%;
                max-width: 280px;
            }

            .footer {
                padding: 60px 0 20px;
            }

            .footer-title {
                margin-top: 20px;
            }
        }

        @media (max-width: 575px) {
            .logo {
                width: 40px;
                height: 40px;
            }

            .brand-name {
                font-size: 1.1rem;
            }

            .social-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }

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

            .locations-card {
                padding: 1.5rem;
            }

            .service-card {
                margin-bottom: 20px;
            }

            .service-img {
                height: 180px;
            }

            .service-price {
                font-size: 1.2rem;
            }

            .service-name {
                font-size: 1.1rem;
            }

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

            .stat-text {
                font-size: 1rem;
            }

            .back-to-top {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                bottom: 20px;
                right: 20px;
            }
        }

        /* How It Works Section Styles */
.how-it-works-section {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: white;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(255, 126, 179, 0.3);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(74, 77, 231, 0.3);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .how-it-works-section {
        padding: 80px 0;
    }

    .step-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .step-card {
        padding: 1.8rem 1.2rem;
    }

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

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

/* Brands We Use Section Styles */
.brands-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 245, 230, 0.3), rgba(255, 250, 240, 0.3));
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/150/150') repeat;
    opacity: 0.03;
    z-index: 1;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--gray);
    font-size: 1.1rem;
}

.brands-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    z-index: 2;
}

.brands-slider {
    position: relative;
}

.brands-slides {
    position: relative;
    height: 300px;
}

.brand-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden;
}

.brand-slide.active {
    opacity: 1;
    visibility: visible;
}

.brand-group {
    display: flex;
    justify-content: center;
    gap: 50px;
    height: 100%;
    align-items: center;
}

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

.brand-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.brand-logo-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.brand-logo {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.brand-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.brand-nav:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 124, 179, 0.3);
}

.brands-slider .prev-btn {
    left: -25px;
}

.brands-slider .next-btn {
    right: -25px;
}

.brand-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .brands-section {
        padding: 80px 0;
    }

    .brand-logo-circle {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 767px) {
    .brand-group {
        gap: 30px;
    }

    .brand-logo-circle {
        width: 120px;
        height: 120px;
    }

    .brand-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .brands-slider .prev-btn {
        left: -15px;
    }

    .brands-slider .next-btn {
        right: -15px;
    }
}

@media (max-width: 575px) {
    .brands-slides {
        height: 400px;
    }

    .brand-group {
        flex-direction: column;
        gap: 20px;
    }

    .brand-logo-circle {
        width: 100px;
        height: 100px;
    }

    .brand-name {
        font-size: 1rem;
    }
}

/* Customer Reviews Section Styles */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 209, 230, 0.3), rgba(240, 240, 255, 0.3));
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/150/150') repeat;
    opacity: 0.03;
    z-index: 1;
}

.reviews-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    z-index: 2;
}

.reviews-slider {
    position: relative;
}

.reviews-slides {
    position: relative;
    height: 350px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden;
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    margin-bottom: 20px;
    color: #FFC107;
    font-size: 1.2rem;
}

.review-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    position: relative;
}

.review-author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.review-author-info {
    margin-left: 15px;
    flex-grow: 1;
}

.review-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.review-date {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.review-quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.6;
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.review-nav:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 124, 179, 0.3);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.review-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .reviews-section {
        padding: 80px 0;
    }

    .review-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .reviews-slides {
        height: 400px;
    }

    .review-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: -15px;
    }

    .next-btn {
        right: -15px;
    }
}

@media (max-width: 575px) {
    .reviews-slides {
        height: 450px;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .review-author-img {
        width: 60px;
        height: 60px;
    }

    .review-author-name {
        font-size: 1rem;
    }

    .review-quote-icon {
        font-size: 2rem;
    }
}
