        /* ======================================================
           VARIABLES
        ====================================================== */

        :root {
            --primary: #2e7d32;
            --primary-dark: #1b5e20;
            --primary-soft: #e8f3e9;
            --secondary: #66bb6a;
            --accent: #d97b3d;

            --background: #f7f5ef;
            --surface: #ffffff;
            --surface-soft: #f0f5ef;

            --text: #263238;
            --text-soft: #66736c;
            --border: #dce5dd;

            --shadow-sm: 0 8px 25px rgba(31, 71, 43, 0.08);
            --shadow-md: 0 20px 55px rgba(31, 71, 43, 0.14);

            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 32px;

            --container: 1200px;
            --header-height: 82px;
        }

        /* ======================================================
           RESET
        ====================================================== */

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: calc(var(--header-height) + 20px);
        }

        body {
            font-family: "Poppins", sans-serif;
            background: var(--background);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        body.menu-open {
            overflow: hidden;
        }

        img {
            display: block;
            width: 100%;
        }

        button,
        input,
        textarea,
        select {
            font: inherit;
        }

        button {
            border: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        section {
            padding: 110px 0;
        }

        .container {
            width: min(90%, var(--container));
            margin-inline: auto;
        }

        .section-header {
            max-width: 720px;
            margin: 0 auto 60px;
            text-align: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
            color: var(--primary);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 28px;
            height: 2px;
            background: var(--accent);
        }

        .section-title {
            font-family: "Playfair Display", serif;
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            line-height: 1.15;
            color: var(--text);
        }

        .section-description {
            margin-top: 20px;
            color: var(--text-soft);
            font-size: 1.02rem;
        }

        /* ======================================================
           BOTONES
        ====================================================== */

        .button {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            min-height: 52px;
            padding: 13px 24px;
            border-radius: 999px;
            font-weight: 600;
            cursor: pointer;
            transition:
                transform 0.25s ease,
                background 0.25s ease,
                color 0.25s ease,
                box-shadow 0.25s ease;
        }

        .button:hover {
            transform: translateY(-2px);
        }

        .button-primary {
            background: var(--primary);
            color: #ffffff;
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.25);
        }

        .button-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 14px 32px rgba(46, 125, 50, 0.32);
        }

        .button-secondary {
            border: 1px solid rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            backdrop-filter: blur(8px);
        }

        .button-secondary:hover {
            background: #ffffff;
            color: var(--primary-dark);
        }

        .button-outline {
            border: 1px solid var(--primary);
            background: transparent;
            color: var(--primary);
        }

        .button-outline:hover {
            background: var(--primary);
            color: #ffffff;
        }

        /* ======================================================
           HEADER
        ====================================================== */

        .site-header {
            position: fixed;
            inset: 0 0 auto;
            z-index: 1000;
            height: var(--header-height);
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid rgba(220, 229, 221, 0.8);
            backdrop-filter: blur(14px);
            transition:
                box-shadow 0.3s ease,
                background 0.3s ease;
        }

        .site-header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 30px rgba(20, 50, 28, 0.08);
        }

        .navbar {
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-icon {
            display: grid;
            place-items: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 1.45rem;
        }

        .brand-name {
            color: var(--primary-dark);
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1.1;
        }

        .brand-name small {
            display: block;
            margin-top: 3px;
            color: var(--text-soft);
            font-size: 0.63rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-link {
            position: relative;
            color: var(--text);
            font-size: 0.92rem;
            font-weight: 500;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -7px;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.25s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary-soft);
            color: var(--primary-dark);
            cursor: pointer;
            font-size: 1.4rem;
        }

        /* ======================================================
           HERO
        ====================================================== */

        .hero {
            position: relative;
            min-height: 100svh;
            padding: calc(var(--header-height) + 70px) 0 80px;
            display: flex;
            align-items: center;
            color: #ffffff;
            background:
                linear-gradient(
                    90deg,
                    rgba(12, 40, 20, 0.88) 0%,
                    rgba(12, 40, 20, 0.68) 48%,
                    rgba(12, 40, 20, 0.28) 100%
                ),
                url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?q=85&w=1900&auto=format&fit=crop")
                center / cover no-repeat;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 130px;
            background: linear-gradient(transparent, var(--background));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 740px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            margin-bottom: 24px;
            padding: 9px 16px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.1);
            font-size: 0.88rem;
            backdrop-filter: blur(8px);
        }

        .hero h1 {
            max-width: 750px;
            font-family: "Playfair Display", serif;
            font-size: clamp(3.2rem, 8vw, 6.2rem);
            line-height: 0.98;
            letter-spacing: -0.03em;
        }

        .hero h1 span {
            color: #8bd58f;
        }

        .hero-description {
            max-width: 650px;
            margin: 28px 0 35px;
            color: rgba(255, 255, 255, 0.88);
            font-size: clamp(1rem, 2vw, 1.18rem);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 45px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .trust-icon {
            display: grid;
            place-items: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(102, 187, 106, 0.22);
        }

        /* ======================================================
           FRANJA DE ESTADÍSTICAS
        ====================================================== */

        .stats-section {
            position: relative;
            z-index: 3;
            padding: 0;
            margin-top: -35px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            overflow: hidden;
            border-radius: var(--radius-lg);
            background: var(--surface);
            box-shadow: var(--shadow-md);
        }

        .stat {
            padding: 34px 25px;
            text-align: center;
            border-right: 1px solid var(--border);
        }

        .stat:last-child {
            border-right: 0;
        }

        .stat-number {
            display: block;
            color: var(--primary);
            font-family: "Playfair Display", serif;
            font-size: 2.3rem;
            font-weight: 700;
        }

        .stat-label {
            color: var(--text-soft);
            font-size: 0.88rem;
        }

        /* ======================================================
           SERVICIOS
        ====================================================== */

        .services {
            background:
                radial-gradient(
                    circle at top right,
                    rgba(102, 187, 106, 0.14),
                    transparent 35%
                ),
                var(--background);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            position: relative;
            overflow: hidden;
            padding: 35px;
            border: 1px solid transparent;
            border-radius: var(--radius-md);
            background: var(--surface);
            box-shadow: var(--shadow-sm);
            transition:
                transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
        }

        .service-card::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 4px;
            background: var(--primary);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--border);
            box-shadow: var(--shadow-md);
        }

        .service-card:hover::before {
            transform: scaleY(1);
        }

        .service-icon {
            display: grid;
            place-items: center;
            width: 64px;
            height: 64px;
            margin-bottom: 25px;
            border-radius: 18px;
            background: var(--primary-soft);
            font-size: 1.85rem;
        }

        .service-card h3 {
            margin-bottom: 12px;
            color: var(--text);
            font-size: 1.25rem;
        }

        .service-card p {
            color: var(--text-soft);
            font-size: 0.94rem;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 22px;
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* ======================================================
           NOSOTROS
        ====================================================== */

        .about-section {
            background: var(--surface);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 75px;
            align-items: center;
        }

        .about-media {
            position: relative;
        }

        .about-main-image {
            height: 620px;
            border-radius: var(--radius-lg);
            object-fit: cover;
            box-shadow: var(--shadow-md);
        }

        .about-floating-card {
            position: absolute;
            right: -35px;
            bottom: 45px;
            max-width: 240px;
            padding: 24px;
            border-radius: var(--radius-md);
            background: var(--primary-dark);
            color: #ffffff;
            box-shadow: var(--shadow-md);
        }

        .about-floating-card strong {
            display: block;
            margin-bottom: 6px;
            font-family: "Playfair Display", serif;
            font-size: 2.4rem;
        }

        .about-content .section-title {
            margin-bottom: 24px;
        }

        .about-content > p {
            margin-bottom: 20px;
            color: var(--text-soft);
        }

        .check-list {
            display: grid;
            gap: 14px;
            margin: 28px 0 34px;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .check-mark {
            flex: 0 0 26px;
            display: grid;
            place-items: center;
            width: 26px;
            height: 26px;
            margin-top: 1px;
            border-radius: 50%;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 0.82rem;
            font-weight: 700;
        }

        /* ======================================================
           PROCESO
        ====================================================== */

        .process {
            background: var(--primary-dark);
            color: #ffffff;
        }

        .process .eyebrow,
        .process .section-description {
            color: rgba(255, 255, 255, 0.75);
        }

        .process .section-title {
            color: #ffffff;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .process-card {
            position: relative;
            padding: 32px 25px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.06);
        }

        .process-number {
            display: inline-flex;
            margin-bottom: 24px;
            color: #8bd58f;
            font-family: "Playfair Display", serif;
            font-size: 2rem;
            font-weight: 700;
        }

        .process-card h3 {
            margin-bottom: 12px;
        }

        .process-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.92rem;
        }

        /* ======================================================
           GALERÍA / CARRUSEL
        ====================================================== */

        .gallery-section {
            overflow: hidden;
        }

        .carousel {
            position: relative;
        }

        .carousel-viewport {
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.55s ease;
        }

        .carousel-slide {
            position: relative;
            min-width: 100%;
            height: 610px;
        }

        .carousel-slide img {
            height: 100%;
            object-fit: cover;
        }

        .carousel-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                transparent 40%,
                rgba(11, 34, 17, 0.8)
            );
        }

        .slide-caption {
            position: absolute;
            z-index: 2;
            left: 45px;
            right: 45px;
            bottom: 38px;
            color: #ffffff;
        }

        .slide-caption span {
            display: block;
            margin-bottom: 6px;
            color: #a9e2ac;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .slide-caption h3 {
            font-family: "Playfair Display", serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
        }

        .carousel-button {
            position: absolute;
            z-index: 5;
            top: 50%;
            display: grid;
            place-items: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-dark);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            transform: translateY(-50%);
            transition:
                background 0.25s ease,
                transform 0.25s ease;
        }

        .carousel-button:hover {
            background: #ffffff;
            transform: translateY(-50%) scale(1.05);
        }

        .carousel-prev {
            left: 22px;
        }

        .carousel-next {
            right: 22px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 9px;
            margin-top: 28px;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #c9d4ca;
            cursor: pointer;
            transition:
                width 0.25s ease,
                background 0.25s ease;
        }

        .carousel-dot.active {
            width: 30px;
            border-radius: 999px;
            background: var(--primary);
        }

        /* ======================================================
           TESTIMONIO
        ====================================================== */

        .testimonial-section {
            padding-top: 0;
        }

        .testimonial-card {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            overflow: hidden;
            border-radius: var(--radius-lg);
            background: var(--surface);
            box-shadow: var(--shadow-md);
        }

        .testimonial-image {
            min-height: 440px;
            object-fit: cover;
        }

        .testimonial-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px;
        }

        .stars {
            margin-bottom: 22px;
            color: var(--accent);
            letter-spacing: 4px;
        }

        .testimonial-quote {
            font-family: "Playfair Display", serif;
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            line-height: 1.35;
        }

        .testimonial-author {
            margin-top: 25px;
            color: var(--text-soft);
        }

        .testimonial-author strong {
            display: block;
            color: var(--text);
        }

        /* ======================================================
           CONTACTO
        ====================================================== */

        .contact-section {
            background:
                linear-gradient(
                    rgba(245, 241, 232, 0.94),
                    rgba(245, 241, 232, 0.94)
                ),
                url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?q=80&w=1800&auto=format&fit=crop")
                center / cover fixed;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 60px;
            align-items: center;
        }

        .contact-content .section-title {
            margin-bottom: 22px;
        }

        .contact-content > p {
            max-width: 520px;
            color: var(--text-soft);
        }

        .contact-details {
            display: grid;
            gap: 18px;
            margin-top: 35px;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-detail-icon {
            display: grid;
            place-items: center;
            flex: 0 0 48px;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 1.2rem;
        }

        .contact-detail small {
            display: block;
            color: var(--text-soft);
        }

        .contact-detail strong {
            color: var(--text);
            font-size: 0.98rem;
        }

        .contact-form-wrapper {
            padding: 45px;
            border: 1px solid rgba(220, 229, 221, 0.8);
            border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, 0.94);
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(12px);
        }

        .form-header {
            margin-bottom: 28px;
        }

        .form-header h3 {
            font-size: 1.55rem;
        }

        .form-header p {
            margin-top: 8px;
            color: var(--text-soft);
            font-size: 0.92rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .form-group {
            display: grid;
            gap: 8px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            color: var(--text);
            font-size: 0.87rem;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            min-height: 50px;
            padding: 13px 15px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #ffffff;
            color: var(--text);
            outline: none;
            transition:
                border-color 0.25s ease,
                box-shadow 0.25s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
        }

        textarea.form-control {
            min-height: 130px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            margin-top: 4px;
        }

        .form-note {
            margin-top: 14px;
            color: var(--text-soft);
            font-size: 0.78rem;
            text-align: center;
        }

        .form-status {
            display: none;
            margin-top: 18px;
            padding: 13px 15px;
            border-radius: var(--radius-sm);
            background: var(--primary-soft);
            color: var(--primary-dark);
            font-size: 0.9rem;
        }

        .form-status.visible {
            display: block;
        }

        /* ======================================================
           FOOTER
        ====================================================== */

        .footer {
            padding: 65px 0 30px;
            background: #142c1c;
            color: rgba(255, 255, 255, 0.78);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
            gap: 45px;
            padding-bottom: 45px;
        }

        .footer .brand-name {
            color: #ffffff;
        }

        .footer-brand p {
            max-width: 340px;
            margin-top: 20px;
            font-size: 0.9rem;
        }

        .footer-title {
            margin-bottom: 18px;
            color: #ffffff;
            font-size: 1rem;
        }

        .footer-links {
            display: grid;
            gap: 11px;
            font-size: 0.88rem;
        }

        .footer-links a:hover {
            color: #8bd58f;
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-link {
            display: grid;
            place-items: center;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            transition:
                background 0.25s ease,
                color 0.25s ease;
        }

        .social-link:hover {
            background: var(--secondary);
            color: var(--primary-dark);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 25px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 0.8rem;
        }

        /* ======================================================
           WHATSAPP
        ====================================================== */

        .whatsapp-button {
            position: fixed;
            z-index: 900;
            right: 24px;
            bottom: 24px;
            display: grid;
            place-items: center;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25d366;
            color: #ffffff;
            font-size: 1.65rem;
            box-shadow: 0 14px 35px rgba(37, 211, 102, 0.35);
            transition: transform 0.25s ease;
        }

        .whatsapp-button:hover {
            transform: translateY(-4px) scale(1.04);
        }

        /* ======================================================
           ANIMACIONES
        ====================================================== */

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition:
                opacity 0.7s ease,
                transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ======================================================
           RESPONSIVE
        ====================================================== */

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .about-media {
                max-width: 720px;
                margin: 0 auto;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 850px) {
            .menu-toggle {
                display: grid;
                place-items: center;
            }

            .nav-menu {
                position: fixed;
                top: var(--header-height);
                right: 0;
                bottom: 0;
                width: min(84%, 360px);
                padding: 35px 28px;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                background: #ffffff;
                box-shadow: -15px 20px 40px rgba(20, 50, 28, 0.16);
                transform: translateX(110%);
                transition: transform 0.3s ease;
            }

            .nav-menu.open {
                transform: translateX(0);
            }

            .nav-link {
                display: block;
                padding: 14px 4px;
                border-bottom: 1px solid var(--border);
            }

            .nav-link::after {
                display: none;
            }

            .nav-menu .button {
                margin-top: 20px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat:nth-child(2) {
                border-right: 0;
            }

            .stat:nth-child(-n + 2) {
                border-bottom: 1px solid var(--border);
            }

            .testimonial-card {
                grid-template-columns: 1fr;
            }

            .testimonial-image {
                min-height: 350px;
            }
        }

        @media (max-width: 650px) {
            section {
                padding: 80px 0;
            }

            .container {
                width: min(92%, var(--container));
            }

            .hero {
                min-height: auto;
                padding-top: calc(var(--header-height) + 85px);
                padding-bottom: 115px;
                background-position: 63% center;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .button {
                width: 100%;
            }

            .hero-trust {
                display: grid;
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .services-grid,
            .process-grid,
            .footer-grid,
            .form-grid {
                grid-template-columns: 1fr;
            }

            .about-main-image {
                height: 470px;
            }

            .about-floating-card {
                right: 16px;
                bottom: 18px;
                max-width: 210px;
            }

            .carousel-slide {
                height: 450px;
            }

            .slide-caption {
                left: 24px;
                right: 24px;
                bottom: 25px;
            }

            .carousel-button {
                width: 42px;
                height: 42px;
            }

            .carousel-prev {
                left: 12px;
            }

            .carousel-next {
                right: 12px;
            }

            .testimonial-content,
            .contact-form-wrapper {
                padding: 32px 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
  