:root {
    --primary-color: #0D9488;
    --primary-light: rgba(209, 235, 235, 0.62);
    --secondary-color: #134E4A;
    --text-color: #333333;
    --light-color: #FFFFFF;
    --background-light: rgba(209, 235, 235, 0.4);
    --background-card: rgba(184, 224, 224, 0.12);
    --accent-color: #F59E0B;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background-color: var(--gray-100);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (max-width: 767px) {
    .container, 
    .hero-section .container,
    .bento-container,
    .faq-container {
        padding: 0 1rem;
    }
    
    /* Unificar el espaciado entre secciones */
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    /* Espaciado uniforme para los encabezados */
    .bento-header {
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    /* Espaciado uniforme para los contenidos */
    .bento-grid, .faq-accordion {
        padding: 0;
    }
    
    /* Eliminar cualquier padding extra en secciones específicas */
    .bento-section .bento-container,
    .benefits-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.bg-light {
    background-color: var(--gray-100);
}

.overflow-hidden {
    overflow: hidden;
}

.w-auto {
    width: auto;
}

.h-full {
    height: 100%;
}

.flex {
    display: flex;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.rounded {
    border-radius: 0.25rem;
}

.w-7 {
    width: 1.75rem;
}

.h-7 {
    height: 1.75rem;
}

.hidden {
    display: none;
}

.space-x-12 > * + * {
    margin-left: 3rem;
}

.menu-divider {
    width: 1px;
    height: 1.25rem;
    background-color: var(--gray-300);
}

/* Header and Navigation */
header {
    width: 100%;
    padding: 1rem 0;
    z-index: 10;
}

.mobile-menu-button {
    color: var(--gray-900);
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }
    
    .lg\:hidden {
        display: none;
    }
    
    .lg\:items-center {
        align-items: center;
    }
    
    .lg\:justify-center {
        justify-content: center;
    }
    
    .lg\:space-x-10 > * + * {
        margin-left: 2.5rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 3rem 0 4rem;
    position: relative;
}

@media (min-width: 640px) {
    .hero-section {
        padding: 4rem 0 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 5rem 0 9rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.nav-link {
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.nav-link:hover {
    opacity: 0.75;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--gray-900);
    border-radius: 0.75rem;
    color: var(--gray-900);
    background-color: transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-button:hover {
    background-color: var(--gray-900);
    color: var(--light-color);
}

.desktop-menu {
    display: none;
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    padding: 0;
    margin: 0;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.hero-text .highlight {
    background: #a7f3d0;
    color: var(--gray-900);
    border-radius: 0.5em;
    padding: 0.1em 0.4em;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    transition: background 0.2s;
}

@media (max-width: 480px) {
    .hero-text .highlight {
        font-size: 1em;
        padding: 0.08em 0.3em;
    }
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 42rem;
    margin: 0;
}

/* Testimonial preview */
.testimonial-container {
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
}

.testimonial-preview {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1rem 0 0 0;
    padding: 0;
    max-width: 100%;
    text-align: left;
}

.avatars {
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    border: 2px solid var(--light-color);
    margin-left: -1rem;
    background-color: var(--gray-300);
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--gray-900);
}

.font-bold {
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    color: white;
    background-color: #0D9488;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-button:hover {
    background-color: #0A7C72;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: transparent;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.secondary-button:hover {
    background-color: var(--gray-200);
}

.button-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 70%;
    background: radial-gradient(circle, rgba(210, 145, 255, 0.35) 60%, rgba(255,255,255,0) 100%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.hero-image img {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-text p {
        margin: 0;
    }
    
    .testimonial-preview {
        flex-direction: row;
        align-items: center;
    }
    
    .avatars {
        justify-content: flex-start;
    }
    
    .hero-cta {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: #101827;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

/* Bento Grid Section */
.bento-section {
    background-color: var(--light-color);
    color: var(--gray-900);
    position: relative;
    padding: 6rem 0;
}

.bento-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem !important;
    width: 100%;
}

.bento-header {
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.bento-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bento-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

@media (min-width: 640px) {
    .bento-title {
        font-size: 3rem;
    }
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-areas:
            "card1 card1 card2 card2 card3 card3"
            "card4 card4 card5 card5 card5 card5";
    }
    
    .bento-card:nth-child(1) { grid-area: card1; }
    .bento-card:nth-child(2) { grid-area: card2; }
    .bento-card:nth-child(3) { grid-area: card3; }
    .bento-card:nth-child(4) { grid-area: card4; }
    .bento-card:nth-child(5) { grid-area: card5; }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-areas:
            "card1 card1 card2 card2 card3 card3"
            "card4 card4 card5 card5 card5 card5";
    }
}

.bento-card {
    height: 100%;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Eliminados los bordes inferiores de las tarjetas */

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

/* Estilos para tarjeta con fondo sólido */
.bento-solid-bg .bento-card-content {
    background-color: var(--primary-color);
    border: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 3rem 2rem;
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

.bento-solid-bg .bento-text {
    max-width: 600px;
    text-align: left;
    padding-left: 2rem;
}

.bento-solid-bg .bento-card-category {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.bento-solid-bg .bento-card-title {
    color: var(--light-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bento-solid-bg .bento-card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bento-cta {
    margin-top: 1rem;
}

.bento-button-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--light-color);
    color: #0D9488;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid var(--light-color);
}

.bento-button-light:hover {
    background-color: transparent;
    color: var(--light-color);
}

.bento-card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--light-color);
    border-radius: 1rem;
    overflow: hidden;
}

.bento-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bento-text {
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
}

.bento-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.bento-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.bento-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    font-weight: 400;
}

.bg-overlay {
    background-color: rgba(16, 24, 39, 0.95);
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    background-color: var(--gray-100);
    padding: 5rem 0;
}

@media (min-width: 640px) {
    .faq-section {
        padding: 6rem 0;
    }
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .faq-header {
        margin-bottom: 4rem;
    }
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.bento-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.testimonial-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

@media (min-width: 1024px) {
    .faq-title {
        font-size: 3rem;
    }
}

.faq-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .faq-subtitle {
        font-size: 1.125rem;
    }
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: var(--light-color);
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

@media (min-width: 640px) {
    .faq-question {
        padding: 1.5rem;
    }
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-icon-minus, .faq-icon-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-900);
}

.faq-item .faq-icon-minus {
    display: none;
}

.faq-item .faq-icon-plus {
    display: flex;
}

.faq-item.active .faq-icon-minus {
    display: flex;
}

.faq-item.active .faq-icon-plus {
    display: none;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.faq-contact {
    max-width: 900px;
    margin: 2rem auto 0;
    background-color: var(--gray-100);
    border-radius: 0.75rem;
    overflow: hidden;
    text-align: center;
}

.faq-contact-content {
    padding: 3rem 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.faq-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.faq-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    border: 4px solid var(--light-color);
    margin: 0 -0.5rem;
    object-fit: cover;
}

.faq-avatar-center {
    width: 4rem;
    height: 4rem;
    z-index: 10;
}

.faq-contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.faq-contact-text {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.faq-contact-button {
    display: flex;
    justify-content: center;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--gray-100);
    padding: 5rem 0;
}

@media (min-width: 640px) {
    .testimonial-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .testimonial-section {
        padding: 6rem 0;
    }
}

.testimonial-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem 0 0;
}

.testimonial-content {
    max-width: 800px;
}

.testimonial-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

@media (min-width: 640px) {
    .testimonial-heading {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .testimonial-heading {
        font-size: 3rem;
    }
}

.testimonial-quote-container {
    margin-top: 5rem;
}

.testimonial-quote {
    margin: 0;
}

.testimonial-quote p {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--gray-900);
    font-weight: 400;
}

@media (min-width: 768px) {
    .testimonial-quote p {
        font-size: 1.875rem;
        line-height: 1.5;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 4rem;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.author-title {
    margin-left: 0 !important;
    font-size: 1.125rem;
    color: var(--gray-600);
}

.testimonial-avatars {
    display: flex;
    align-items: center;
    margin-top: 3rem;
    gap: 1rem;
}

.avatar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    border: 2px solid transparent;
}

.avatar-container.active {
    border-color: var(--primary-color);
}

.avatar-image {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    object-fit: cover;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.benefits-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-transparent {
    color: transparent;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.bg-gradient {
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.text-accent {
    color: var(--accent-color);
}

.text-white {
    color: var(--light-color);
}

.text-gray-400 {
    color: #9ca3af;
}

.bg-card {
    background-color: rgba(31, 41, 55, 0.9);
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.benefit-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem !important;
    padding-bottom: 2.5rem !important;
}

@media (max-width: 768px) {
    .benefit-card-inner {
        padding: 1.5rem 1.25rem 2.5rem !important;
        margin-bottom: 1.5rem;
    }
    
    .bg-card {
        margin: 0 0.5rem;
        border-radius: 1rem;
    }
    
    .grid-cols-1 {
        padding: 0 0.5rem;
    }
}

@media (min-width: 769px) {
    .col-span-full {
        grid-column: 1 / -1;
    }
    
    .grid-cols-1.gap-6.lg\:gap-8.md\:grid-cols-3 {
        display: grid;
    }
}

.benefit-card-inner h3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.benefit-card-inner p.text-2xl {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.25rem 0;
    line-height: 1.3;
}

.benefit-card-inner p.text-base {
    color: #d1d5db; /* Color más claro que el actual para mejor legibilidad */
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 1rem;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.transform {
    transform: translateX(-50%) translateY(-96px);
}

.filter {
    filter: blur(64px);
}

.opacity-50 {
    opacity: 0.5;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.gap-6 {
    gap: 1.5rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-md {
    max-width: 28rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.font-normal {
    font-weight: 400;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.uppercase {
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .sm\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .sm\:mt-8 {
        margin-top: 2rem;
    }
    
    .sm\:mt-16 {
        margin-top: 4rem;
    }
    
    .sm\:text-4xl {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .lg\:mt-12 {
        margin-top: 3rem;
    }
    
    .lg\:mt-20 {
        margin-top: 5rem;
    }
    
    .lg\:gap-8 {
        gap: 2rem;
    }
    
    .lg\:p-8 {
        padding: 2rem;
    }
    
    .lg\:text-5xl {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .xl\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        align-items: center;
    }
    
    .hero-image {
        max-width: 80%;
    }
    
    .hero-benefits {
        flex-wrap: wrap;
    }
    
    .benefit-card {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .benefit-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
    }
}
