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

        :root {
            --primary-color: #C9A882;
            --secondary-color: #E8D4BA;
            --accent-color: #A08968;
            --text-dark: #290102;
            --text-medium: #4a4a4a;
            --text-light: #290102;
            --bg-cream: #F7F5F2;
            --white: #ffffff;
            --border-color: #a4a4a4;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.75;
            color: var(--text-medium);
            overflow-x: hidden;
            background: var(--white);
            font-size: 17px;
            font-weight: 400;
        }

        /* Header/Navigation */
        .header {
            background: var(--white);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1.5rem 0;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 1rem 0;
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-top {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            justify-self: start;
        }

        .social-links a {
            color: var(--text-medium);
            font-size: 1.3rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .social-links a:hover {
            color: var(--primary-color);
        }

        .logo {
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--text-dark);
            letter-spacing: 2px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: color 0.3s ease;
            justify-self: center;
        }

        .logo img {
            width: auto;
            height: 55px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 3.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-medium);
            font-weight: 400;
            font-size: 0.9rem;
            transition: color 0.3s;
            letter-spacing: 0.5px;
        }

        .header-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.8rem 1.8rem;
            background: var(--text-dark);
            color: var(--white);
            text-decoration: none;
            border: none;
            border-radius: 0;
            font-weight: 500;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            white-space: nowrap;
            justify-self: end;
        }

        .header-cta-button:hover {
            background: var(--primary-color);
        }

        .nav-links a:hover {
            color: var(--text-dark);
        }

        .nav-cta {
            text-decoration: underline;
            color: var(--text-dark) !important;
            font-weight: 500;
        }

        /* Hero Section */
        .hero {
            margin-top: 90px;
            padding: 0;
            background: var(--white);
            min-height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 8rem 4rem 4rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--text-light);
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .hero-text h1 {
            font-family: 'Lora', serif;
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            color: var(--text-dark);
            font-weight: 400;
            line-height: 1.15;
            letter-spacing: -0.02em;
            max-width: 900px;
        }

        .hero-text h1 strong {
            font-weight: 400;
            font-style: italic;
            color: var(--text-dark);
            display: inline;
        }

        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            color: var(--text-medium);
            line-height: 1.8;
            font-weight: 400;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-image-full {
            width: 100%;
            height: 85vh;
            min-height: 600px;
            overflow: hidden;
            position: relative;
        }

        .hero-image-full img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1.1rem 2.5rem;
            background: var(--text-dark);
            color: var(--white);
            text-decoration: none;
            border: none;
            border-radius: 0;
            font-weight: 500;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .cta-button:hover {
            background: var(--primary-color);
        }

        .whatsapp-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Sections */
        .section {
            padding: 8rem 4rem;
        }

        .section-light {
            background: var(--bg-cream);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .section-title {
            font-family: 'Lora', serif;
            text-align: center;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            font-weight: 400;
            line-height: 1.3;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.05rem;
            color: var(--text-medium);
            margin-bottom: 0;
            font-weight: 400;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            margin-top: 5rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .service-card-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .service-card-content {
            padding: 2.5rem;
        }

        .service-card h3 {
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-size: 1.8rem;
            font-weight: 500;
            font-family: 'Lora', serif;
            text-align: center;
        }

        .service-card p {
            color: var(--text-medium);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .service-card a {
            color: var(--text-dark);
            text-decoration: underline;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 500;
            transition: color 0.3s;
        }

        .service-card a:hover {
            color: var(--primary-color);
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 25% 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 600px;
            background: var(--white);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none;
            opacity: 1;
            transition: all 0.8s ease;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .about-text.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .about-text h2 {
            font-family: 'Lora', serif;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            font-weight: 400;
            line-height: 1.3;
        }

        .about-text p {
            font-size: 1rem;
            color: var(--text-medium);
            margin-bottom: 1.8rem;
            line-height: 1.8;
        }

        .credentials {
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }

        .credential-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding: 0;
            background: transparent;
            border-radius: 0;
            border-left: none;
        }

        .credential-item h4 {
            font-family: 'Lora', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }

        .credential-icon {
            display: none;
        }

        .credential-item span {
            color: var(--text-medium);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Process Section */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
            margin-top: 5rem;
        }

        .process-step {
            background: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            position: relative;
            overflow: visible;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
            border: none;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .process-step:hover {
            transform: translateY(-5px);
        }

        .step-icon {
            width: 100%;
            height: 350px;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            position: relative;
            flex-shrink: 0;
        }

        .step-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .process-step:hover .step-icon img {
            transform: scale(1.05);
        }

        .step-number {
            position: absolute;
            top: 0;
            left: 0;
            width: 50px;
            height: 50px;
            background: var(--white);
            color: var(--text-dark);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 500;
            box-shadow: none;
        }

        .step-content {
            flex: 1;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .process-step h3 {
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
            font-weight: 500;
            font-family: 'Lora', serif;
        }

        .process-step p {
            color: var(--text-medium);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Testimonials */
        .carousel-container {
            position: relative;
            margin-top: 5rem;
        }

        .carousel-wrapper {
            overflow: hidden;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        .testimonials-grid {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
        }

        .testimonial {
            background: var(--white);
            padding: 3rem;
            border-radius: 0;
            box-shadow: none;
            flex: 0 0 calc((100% - 4rem) / 3);
            min-width: calc((100% - 4rem) / 3);
            transition: all 0.4s ease;
            border: none;
            border: 1px solid var(--border-color);
        }

        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }

        .testimonial p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-medium);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3.5rem;
        }

        .carousel-button {
            width: 45px;
            height: 45px;
            background: transparent;
            border: 1px solid var(--text-dark);
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: none;
        }

        .carousel-button:hover:not(:disabled) {
            background: var(--text-dark);
            color: var(--white);
        }

        .carousel-button:disabled {
            opacity: 0.2;
            cursor: not-allowed;
        }

        .carousel-dots {
            display: flex;
            gap: 0.6rem;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--text-dark);
            transform: scale(1.3);
        }

        .carousel-dot:hover {
            background: var(--primary-color);
            opacity: 0.7;
        }

        .carousel-dot.active {
            background: var(--primary-color);
            width: 30px;
            border-radius: 6px;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-avatar {
            width: 55px;
            height: 55px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.3rem;
        }

        .testimonial-info h4 {
            color: var(--text-dark);
            margin-bottom: 0.3rem;
            font-weight: 500;
        }

        .testimonial-rating {
            color: var(--primary-color);
            font-size: 0.9rem;
        }

        .testimonial-text {
            color: var(--text-light);
            line-height: 1.8;
            font-style: italic;
            font-size: 0.98rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 6rem 2rem;
            background: var(--bg-cream);
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .cta-button-white {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1.2rem 3rem;
            background: var(--white);
            color: #4A7C59;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .cta-button-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            background: #f5f5f5;
        }

        /* Plans Section */
        .plans-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2.5rem;
            margin-top: 5rem;
            align-items: stretch;
        }

        @media (min-width: 769px) and (max-width: 900px) {
            .plans-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .plans-grid {
                grid-template-columns: 1fr;
            }
        }

        .plan-card {
            background: var(--white);
            border-radius: 0;
            padding: 3.5rem 3rem;
            box-shadow: none;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .plan-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .plan-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .plan-card.featured {
            border-color: var(--text-dark);
            background: var(--white);
        }

        .plan-badge {
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            background: var(--text-dark);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 0;
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
        }

        .plan-name {
            font-family: 'Lora', serif;
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            margin-top: 0;
            font-weight: 500;
            text-align: center;
            line-height: normal;
        }

        .plan-card.featured .plan-name {
            margin-top: 2.5rem;
        }

        .plan-card i {
            display: block;
            margin-bottom: 1.5rem;
            font-style: italic;
            color: var(--text-medium);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .plan-price {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
            font-weight: 400;
        }

        .plan-price span {
            font-size: 1rem;
            color: var(--text-medium);
            font-weight: 400;
        }

        .plan-period {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 3rem;
        }

        .plan-features li {
            padding: 0.9rem 0;
            color: var(--text-medium);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li::before {
            content: "✓";
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .plan-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            width: 100%;
            padding: 1.1rem 2rem;
            background: var(--text-dark);
            color: var(--white);
            text-decoration: none;
            border-radius: 0;
            font-weight: 500;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: auto;
        }

        .plan-button:hover {
            background: var(--primary-color);
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: var(--white);
            text-align: center;
            padding: 2rem 1rem;
        }

        .footer p {
            font-size: 0.85rem;
            color: var(--white);
            letter-spacing: 0.5px;
        }

        .footer .social-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2.5rem;
            justify-self: center;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-3px);
            border-color: var(--white);
            background: var(--white);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        .social-link:hover svg {
            fill: var(--text-dark);
        }

        .social-link.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-link.instagram:hover svg {
            fill: white;
        }

        .social-link.tiktok:hover {
            background: #000000;
        }

        .social-link.tiktok:hover svg {
            fill: white;
        }

        .social-link.youtube:hover {
            background: #FF0000;
        }

        .social-link.youtube:hover svg {
            fill: white;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero {
                padding: 0;
            }

            .hero-content {
                padding: 6rem 2rem 4rem;
            }

            .hero-text h1 {
                font-size: 4rem;
            }

            .hero-image-full {
                height: 70vh;
                min-height: 500px;
            }

            .section {
                padding: 6rem 2rem;
            }

            .nav-container {
                padding: 0 2rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 900px) {
            .testimonials-grid {
                gap: 2rem;
            }

            .testimonial {
                flex: 0 0 calc((100% - 2rem) / 2);
                min-width: calc((100% - 2rem) / 2);
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {

            .nav-container .header-cta-button {
                display:none;
            }

            body {
                font-size: 16px;
            }

            .header {
                padding: 1rem 0;
            }

            .nav-container {
                padding: 0 1.5rem;
                gap: 1rem;
            }

            .nav-top {
                flex-direction: column;
                gap: 1rem;
            }

            .social-links {
                gap: 1.5rem;
            }

            .logo {
                font-size: 0.85rem;
                gap: 0.6rem;
                letter-spacing: 1.5px;
            }

            .logo img {
                height: 35px;
            }

            .header-cta-button {
                padding: 0.7rem 1.5rem;
                font-size: 0.7rem;
                letter-spacing: 1px;
            }

            .nav-links {
                gap: 1.2rem;
                flex-wrap: nowrap;
                justify-content: flex-start;
                overflow-x: auto;
                width: 100%;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .nav-links::-webkit-scrollbar {
                display: none;
            }

            .nav-links a {
                font-size: 0.75rem;
                white-space: nowrap;
            }

            .hero {
                margin-top: 70px;
                padding: 0;
            }

            .hero-content {
                padding: 5rem 1.5rem 3rem;
            }

            .hero-label {
                font-size: 0.7rem;
                letter-spacing: 2px;
                margin-bottom: 1.5rem;
            }

            .hero-text h1 {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .hero-text p {
                font-size: 1rem;
                margin-bottom: 2.5rem;
            }

            .hero-image-full {
                height: 50vh;
                min-height: 400px;
            }

            .cta-button {
                padding: 1rem 2rem;
                font-size: 0.75rem;
                letter-spacing: 1.5px;
            }

            .section {
                padding: 5rem 1.5rem;
            }

            .section-label {
                font-size: 0.7rem;
                letter-spacing: 2px;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
            }

            .section-header {
                margin-bottom: 3.5rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 3rem;
            }

            .service-card-image {
                height: 250px;
            }

            .service-card-content {
                padding: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image {
                height: 450px;
            }

            .about-text h2 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .about-text p {
                font-size: 0.95rem;
            }

            .credentials {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 3rem;
                margin-top: 3rem;
            }

            .step-icon {
                height: 280px;
            }

            .process-step h3 {
                font-size: 1.2rem;
            }

            .process-step p {
                font-size: 0.9rem;
            }

            .testimonials-grid {
                gap: 2rem;
            }

            .testimonial {
                flex: 0 0 100%;
                min-width: 100%;
                padding: 2.5rem;
            }

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

            .carousel-nav {
                margin-top: 2.5rem;
            }

            .plans-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 3rem;
            }

            .plan-card {
                padding: 2.5rem 2rem;
            }

            .plan-name {
                font-size: 1.5rem;
            }

            .plan-price {
                font-size: 2.3rem;
            }

            .footer {
                padding: 2rem 1rem;
            }

            .social-links {
                gap: 1.5rem;
            }

            .process-step p {
                font-size: 0.95rem;
                text-align: center;
            }

            .testimonial {
                flex: 0 0 100%;
                min-width: 100%;
                padding: 2rem 1.5rem;
            }

            .carousel-wrapper {
                margin: 0;
                padding: 0;
            }

            .testimonials-grid {
                gap: 1.5rem;
            }

            .carousel-nav {
                gap: 1.5rem;
            }

            .carousel-button {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .cta-section p {
                font-size: 1rem;
            }

            .cta-button-white {
                font-size: 0.95rem;
                padding: 1rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.6rem;
            }

            .hero-image {
                width: 250px;
                height: 250px;
                font-size: 3.5rem;
            }

            .card {
                padding: 0;
            }

            .card-icon {
                width: 100%;
                height: 180px;
                min-height: 180px;
            }

            .card-content {
                padding: 1.5rem 1.2rem;
            }

            .testimonial {
                padding: 1.8rem 1.2rem;
                flex: 0 0 100%;
                min-width: 100%;
            }

            .testimonial-header {
                gap: 1rem;
                margin-bottom: 1.2rem;
            }

            .testimonial-avatar {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .testimonial-text {
                font-size: 0.9rem;
            }

            .carousel-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .process-step {
                padding: 0;
                flex-direction: column !important;
                align-items: stretch;
                text-align: center;
            }

            .process-step:nth-child(even) {
                flex-direction: column !important;
            }

            .step-icon {
                width: 100%;
                max-width: 100%;
                height: 250px;
                min-width: unset;
                min-height: 250px;
                margin: 0;
                border-radius: 0;
            }

            .step-content {
                padding: 1.8rem 1.2rem;
            }

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

            .step-content {
                width: 100%;
            }

            .process-step h3 {
                font-size: 1.2rem;
                text-align: center;
            }

            .process-step p {
                font-size: 0.9rem;
                text-align: center;
            }

            .step-content {
                text-align: center;
            }

            .about-image {
                max-width: 250px;
                height: 250px;
                font-size: 3rem;
            }

            .logo {
                font-size: 0.75rem;
                gap: 0.4rem;
            }

            .logo img {
                height: 25px;
                width: auto;
            }

            .logo span {
                white-space: nowrap;
            }

            .social-links {
                gap: 1rem;
            }

            .social-link {
                width: 45px;
                height: 45px;
            }

            .social-link svg {
                width: 20px;
                height: 20px;
            }
        }