/* ==========================================================================
   VARIABLES Y ESTILOS GENERALES
   ========================================================================== */
:root {
    --pink-base: #f9dee7; 
    --pink-brand: #E14D77;
    --pink-vibrant: #FF3366;
    --green-solid: #4A7754;
    --dark: #2D2D2D;
    --white: #ffffff;
    --wine: #9d2d4d;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--pink-base); 
    color: var(--dark); 
    overflow-x: hidden; 
    line-height: 1.5;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 60px 20px; text-align: center; }
.section-title { font-family: 'Playfair Display', serif; color: var(--wine); margin-bottom: 30px; font-size: 2.2rem; }

/* 1. HEADER */
.main-header { background: var(--white); padding: 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-container { display: flex; align-items: center; justify-content: center; gap: 12px; }
.brand-logo { height: 45px; }
.brand-name { font-weight: 800; color: var(--pink-brand); font-size: 1.6rem; letter-spacing: 1px; }

/* 2. HERO SECTION */
.hero-new { background-color: var(--pink-base); width: 100%; text-align: center; overflow: hidden; position: relative; display: flex; justify-content: center; }
.hero-wrapper { position: relative; width: 100%; max-width: 1000px; line-height: 0; }
.hero-image-full { 
    width: 100%; height: auto; display: block; 
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}
.badge-discount-left { position: absolute; top: 20px; left: 0; background: var(--pink-vibrant); color: white; padding: 8px 15px; font-size: 11px; font-weight: 800; border-radius: 0 20px 20px 0; z-index: 10; box-shadow: 2px 2px 10px rgba(0,0,0,0.1); }
.hero-bottom-text { position: absolute; bottom: 12%; left: 0; right: 0; padding: 0 20px; z-index: 15; line-height: 1.4; }
.hero-bottom-text h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--dark); text-shadow: 0px 1px 3px rgba(255, 255, 255, 0.9); }
.hero-bottom-text p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; font-weight: 500; text-shadow: 0px 1px 2px rgba(255, 255, 255, 0.9); }

/* 3. INGREDIENTES CLAVE */
.compounds-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 20px; }
.compound-item { background: rgba(255,255,255,0.8); padding: 25px; border-radius: 20px; display: flex; align-items: center; gap: 15px; backdrop-filter: blur(5px); border: 1px solid white; text-align: left; }
.number { background-color: var(--wine); color: white; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; min-width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 4px 8px rgba(157, 45, 77, 0.2); }
.compound-text h3 { font-size: 1.15rem; color: var(--wine); margin-bottom: 4px; font-weight: 700; }
.compound-text p { font-size: 0.95rem; color: var(--dark); }

/* 4. BENEFICIOS CLAVE (TARJETAS ANGOSTAS) */
.benefit-card { 
    width: 100%; max-width: 720px; margin: 0 auto 25px; border-radius: 25px; min-height: 280px; 
    background-color: white; background-size: cover; background-position: right center; background-repeat: no-repeat; 
    display: flex; overflow: hidden; border: 1px solid white; box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.menopause-card { background-image: url('./beneficio-menopausia.png'); }
.period-card    { background-image: url('./beneficio-periodo.png'); }
.fertility-card { background-image: url('./beneficio-fertilidad.png'); }
.vitality-card  { background-image: url('./beneficio-vitalidad.png'); }
.health-card    { background-image: url('./beneficio-salud.png'); }
.beauty-card    { background-image: url('./beneficio-belleza.png'); }
.pain-card      { background-image: url('./mujer-dolor.png'); }

.benefit-content { 
    width: 75%; padding: 35px 45px; text-align: left; display: flex; flex-direction: column; justify-content: center;
    background: linear-gradient(to right, rgba(249, 222, 231, 1) 0%, rgba(249, 222, 231, 0.95) 65%, transparent 100%);
    z-index: 2;
}
.benefit-label { color: var(--pink-vibrant); font-weight: 800; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 5px; display: block; letter-spacing: 1px; }
.benefit-content h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--wine); margin-bottom: 8px; font-weight: 700; line-height: 1.1; }
.benefit-content p { font-size: 1.05rem; color: var(--dark); line-height: 1.4; max-width: 90%; }

/* ==========================================================================
   SECCIÓN 5: PRECIOS - CORRECCIÓN ENVIÓ GRATIS Y AJUSTES MÓVIL
   ========================================================================== */

.container-wide { width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 10px; }

.pricing-mosaic-new {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    grid-template-rows: repeat(2, 195px);
    gap: 15px;
    margin: 20px auto;
}

.price-card {
    background-color: #ffffff;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid #ffffff;
    background-size: cover;
    background-position: right center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card.active { border: 3px solid #9d2d4d !important; box-shadow: 0 10px 30px rgba(157, 45, 77, 0.2); }

/* IMAGENES DE FONDO */
.t1-bg { background-image: url('./tarjeta-1.png'); background-position: center; }
.t2-bg { background-image: url('./tarjeta-2.png'); }
.t3-bg { background-image: url('./tarjeta-3.png'); }

/* TÍTULOS: MONTSERRAT NEGRO BOLD */
.num-frascos-title {
    font-family: 'Montserrat', sans-serif !important;
    color: #000000 !important;
    font-size: 1.55rem;
    font-weight: 800 !important;
    margin: 0;
    line-height: 1.1;
}

.duracion-texto { font-size: 0.85rem; font-weight: 600; color: #444; margin-bottom: 4px; }

/* T1: PROPIEDADES 2 COLUMNAS */
.card-v-custom { grid-row: span 2; justify-content: flex-end; }
.card-v-footer {
    background-color: #f9dee7;
    padding: 15px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.v-price-main { font-size: 1.5rem; font-weight: 800; color: #9d2d4d; line-height: 1; }
.v-price-sub { display: flex; flex-direction: column; align-items: flex-end; }
.v-price-old { font-size: 0.75rem; text-decoration: line-through; color: #888; }
.v-savings { font-size: 0.8rem; font-weight: 800; color: #FF3366; }

/* T2 y T3: CONTENIDO */
.card-h-content-v2 {
    width: 75%; height: 100%;
    padding: 30px 20px 10px 25px; 
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to right, rgba(249, 222, 231, 1) 0%, rgba(249, 222, 231, 0.95) 65%, transparent 100%);
}

.v2-price-main { font-size: 1.6rem; font-weight: 800; color: #9d2d4d; line-height: 1; }
.v2-price-details { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.v2-price-old { font-size: 0.85rem; text-decoration: line-through; color: #888; }
.v2-savings { font-size: 0.85rem; font-weight: 800; color: #FF3366; }

/* LETREROS ESQUINA */
.corner-tag {
    position: absolute;
    top: 0; left: 0;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #ffffff;
    border-bottom-right-radius: 15px;
    z-index: 10;
}
.tag-pink { background-color: #FF3366 !important; }
.tag-dark { background-color: #2D2D2D !important; }

/* --- CORRECCIÓN LARGO DEL ENFASIS VERDE --- */
.badge-envio-verde { 
    background-color: #27ae60; 
    color: #ffffff; 
    font-size: 0.65rem; 
    font-weight: 800; 
    padding: 3px 10px; 
    border-radius: 5px; 
    display: inline-block !important; /* IMPORTANTE: Para que no use todo el ancho */
    width: fit-content !important;    /* IMPORTANTE: Se ajusta solo a las palabras */
    margin-top: 5px; 
}

/* BOTÓN COMPRA FINAL */
.boton-compra-wrapper { display: flex; justify-content: center; margin-top: 25px; }
.btn-compra-final {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #4A7754 !important;
    color: #ffffff !important;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    width: 95%;
    max-width: 450px;
    box-shadow: 0 8px 20px rgba(74, 119, 84, 0.3);
}
.btn-linea-1 { font-size: 1.3rem; font-weight: 800; }
.btn-linea-2 { font-size: 0.75rem; margin-top: 4px; opacity: 0.9; }

/* --- AJUSTE MÓVIL (FUENTES REDUCIDAS Y TEXTO BAJO) --- */
@media (max-width: 768px) {
    .pricing-mosaic-new { display: flex; flex-direction: column; padding: 0 5px; }
    .card-v-custom { height: 380px; }
    .card-h-custom { height: 145px !important; background-position: 115% center !important; }

    .card-h-content-v2 {
        width: 70% !important;
        padding: 25px 10px 10px 15px !important; /* Espacio para que el texto no suba al letrero */
    }

    .num-frascos-title { font-size: 1.15rem !important; margin-top: 10px !important; } 
    .duracion-texto { font-size: 0.68rem !important; white-space: nowrap; }
    .v2-price-main { font-size: 1.2rem !important; } 
    .v2-price-old, .v2-savings { font-size: 0.72rem !important; }
    .badge-envio-verde { font-size: 0.58rem !important; padding: 2px 8px !important; }
    
    .btn-compra-final { width: 100%; padding: 14px 20px; }
}

/* ==========================================================================
   SECCIÓN 6: TESTIMONIOS - MOVIMIENTO GARANTIZADO
   ========================================================================== */

.slider-outer-wrapper {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.slider-container {
    width: 100%;
    overflow-x: auto; /* PERMITE DESLIZAR CON EL DEDO SIEMPRE */
    display: flex;
    scrollbar-width: none; /* Oculta barra Firefox */
    -ms-overflow-style: none; /* Oculta barra IE */
    cursor: grab;
    -webkit-overflow-scrolling: touch; /* Suavidad en iPhone */
}

.slider-container::-webkit-scrollbar {
    display: none; /* Oculta barra Chrome/Safari */
}

.slider-track {
    display: flex;
    gap: 15px;
    padding: 10px;
    /* No usamos transform aquí para no bloquear el scroll del dedo */
}

.slide {
    width: 280px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    flex-shrink: 0; /* Evita que las tarjetas se encojan */
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.5);
    user-select: none;
}

/* ... (Los estilos de estrellas, avatar y trust-card se mantienen igual) ... */
.stars { color: #FFD700; margin-bottom: 10px; font-size: 1rem; }
.testimonial-text { font-size: 0.9rem; color: var(--dark); line-height: 1.4; min-height: 70px; margin-bottom: 15px; font-style: italic; }
.client-meta { display: flex; align-items: center; gap: 12px; padding-top: 15px; border-top: 1px solid #f9dee7; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: white; font-size: 1.1rem; }
.av-1 { background-color: #E14D77; } .av-2 { background-color: #4A7754; } .av-3 { background-color: #E69F59; } .av-4 { background-color: #2D2D2D; }
.client-info { display: flex; flex-direction: column; }
.client-info strong { font-size: 0.95rem; color: var(--dark); }
.verified-label { color: #27ae60; font-size: 0.75rem; font-weight: 700; margin-top: 2px; }
.trust-card-box { display: flex; justify-content: center; margin-top: 40px; }
.trust-card { background-color: white; width: 320px; padding: 25px; border-radius: 25px; border: 1px solid #f9dee7; text-align: center; box-shadow: 0 10px 25px rgba(157, 45, 77, 0.08); }
.trust-decade-text { font-size: 0.8rem; font-weight: 800; color: #9d2d4d; line-height: 1.4; text-transform: uppercase; }

@media (max-width: 768px) {
    .slide { width: 250px; padding: 20px; }
}

/* 7. TABLA COMPARATIVA */
.table-container { width: 100%; max-width: 800px; margin: 0 auto; background: white; border-radius: 25px; overflow: hidden; border: 1px solid #f9dee7; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th { padding: 20px; background: #fcf0f4; font-weight: 800; font-size: 0.9rem; }
th.emphasis { background: var(--wine) !important; color: white !important; }
.comp-table td { padding: 18px; border-bottom: 1px solid #f9dee7; text-align: center; font-size: 0.95rem; }
.comp-table td.emphasis { background: rgba(249, 222, 231, 0.3); color: #000; font-weight: 700; border-right: 1px solid #f9dee7; }

/* ==========================================================================
   SECCIÓN 8: ASESORÍA WHATSAPP - REVISIÓN MINUCIOSA CENTRADA
   ========================================================================== */

.medical-container {
    background-color: white;
    padding: 45px 30px;
    border-radius: 30px; /* Bordes redondeados consistentes */
    display: flex;
    flex-direction: column; /* Apila imagen y texto verticalmente */
    align-items: center;    /* Centra horizontalmente todos los hijos */
    text-align: center;     /* Centra el texto h3 y p */
    gap: 20px;
    max-width: 720px;       /* Misma anchura que las tarjetas de beneficios */
    margin: 0 auto;
    border: 1px solid #f9dee7;
    box-shadow: 0 10px 30px rgba(157, 45, 77, 0.05);
}

.doc-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--pink-base); /* Marco rosa suave */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.doc-text {
    max-width: 550px; /* Evita que el texto se estire demasiado en PC */
}

.doc-text h3 {
    font-family: 'Playfair Display', serif;
    color: #9d2d4d; /* Color vino profundo */
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.doc-text p {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.5;
}

/* BOTÓN WHATSAPP CENTRADO */
.btn-wa {
    background-color: #25D366;
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    background-color: #20ba5a;
}

/* --- OPTIMIZACIÓN MÓVIL (CENTRADO TOTAL) --- */
@media (max-width: 768px) {
    .medical-container {
        padding: 35px 20px;
        width: 92%; /* Ajuste a los bordes de la pantalla */
    }

    .doc-img {
        width: 110px;
        height: 110px;
    }

    .doc-text h3 {
        font-size: 1.5rem;
    }

    .doc-text p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .btn-wa {
        padding: 12px 25px;
        font-size: 0.85rem;
        width: 100%; /* El botón ocupa el ancho en móvil para mejor clic */
        max-width: 280px;
    }
}
/* 9. FAQ */
.faq-section-title { font-family: 'Playfair Display', serif; color: var(--wine); font-size: 2rem; margin-bottom: 30px; }
.faq-accordion { max-width: 800px; margin: 0 auto; text-align: left; }
details { background: white; margin-bottom: 12px; padding: 15px 20px; border-radius: 15px; border: 1px solid #f9dee7; cursor: pointer; }
summary { font-weight: 700; color: var(--pink-brand); list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: '▼'; font-size: 0.8rem; }

/* ==========================================================================
   SECCIÓN 11: RECONSTRUCCIÓN MINUCIOSA DE IMÁGENES Y FORMATO ANCHO
   ========================================================================== */

.alt-buying-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.alt-card {
    width: 100%;
    max-width: 720px; /* Ancho igual a beneficios */
    min-height: 220px !important;
    background-color: white;
    border-radius: 25px;
    display: flex;
    justify-content: flex-end; /* Contenido a la derecha */
    position: relative;
    overflow: hidden;
    border: 1px solid white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    /* PROPIEDADES DE IMAGEN REFORZADAS */
    background-size: cover !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
}

/* RUTAS DE IMÁGENES CON REFUERZO */
.online-bg   { background-image: url('./pago-online.png') !important; }
.delivery-bg { background-image: url('./pago-entrega.png') !important; }
.wa-bg       { background-image: url('./asesor-whatsapp.png') !important; }
.ml-bg       { background-image: url('./mercado-libre.png') !important; }

.alt-content {
    width: 65%;
    padding: 30px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    /* Difuminado: Transparente a la izquierda para ver al personaje */
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(249, 222, 231, 0.9) 35%, 
        rgba(249, 222, 231, 1) 60%);
}

.ml-yellow-diffuse {
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 230, 0, 0.9) 35%, 
        rgba(255, 230, 0, 1) 60%) !important;
}

/* LETREROS DE ESQUINA RESTAURADOS */
.alt-corner-tag {
    position: absolute;
    top: 0; left: 0;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 800;
    color: white !important;
    border-bottom-right-radius: 15px;
    z-index: 10;
    display: block !important;
}

.tag-pink { background-color: #FF3366 !important; }
.tag-dark { background-color: #2D2D2D !important; }
.tag-ml   { background-color: #3483FA !important; }

.alt-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 700;
}

.alt-content p {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

/* BOTONES CON COLORES ACORDADOS */
.btn-alt {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    color: white !important;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-pink  { background-color: var(--pink-brand); }
.btn-green { background-color: #25D366; }
.btn-blue  { background-color: #3483FA; }

/* --- OPTIMIZACIÓN MÓVIL --- */
@media (max-width: 768px) {
    .alt-card { 
        min-height: 180px !important; 
        max-width: 100%; 
    }
    
    .alt-content {
        width: 65% !important;
        padding: 15px !important;
        background: linear-gradient(to right, 
            transparent 0%, 
            rgba(249, 222, 231, 0.95) 35%, 
            rgba(249, 222, 231, 1) 55%) !important;
    }

    .ml-yellow-diffuse {
        background: linear-gradient(to right, 
            transparent 0%, 
            rgba(255, 230, 0, 0.95) 35%, 
            rgba(255, 230, 0, 1) 55%) !important;
    }

    .alt-content h3 { font-size: 1.25rem !important; }
}

/* ==========================================================================
   ESTILOS SECCIÓN LEGAL - GOOGLE & META FRIENDLY
   ========================================================================== */

.footer-compliance {
    background-color: #ffffff; /* Fondo blanco para máxima claridad */
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #f9dee7;
    margin-top: 40px;
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: #9d2d4d; /* Color vino de la marca */
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 12px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.compliance-text {
    max-width: 850px;
    margin: 0 auto;
}

.compliance-text p {
    font-size: 0.72rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.copyright {
    font-size: 0.75rem;
    color: #999999;
    margin-top: 30px;
    font-weight: 500;
}

/* AJUSTE MÓVIL */
@media (max-width: 768px) {
    .footer-compliance {
        padding: 40px 15px;
    }
    
    .footer-links a {
        display: inline-block;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .compliance-text p {
        font-size: 0.68rem;
        padding: 0 5px;
    }
}
/* FOOTER */
.footer-compliance { padding: 50px 20px; text-align: center; border-top: 1px solid #f9dee7; margin-top: 50px; background: white; }
.footer-links a { color: var(--wine); text-decoration: none; font-weight: 700; margin: 0 10px; font-size: 0.85rem; }
.compliance-text p { font-size: 0.72rem; color: #777; max-width: 850px; margin: 15px auto; line-height: 1.6; }

/* ==========================================================================
   AJUSTES EXCLUSIVOS PARA MÓVIL (MAX-WIDTH 768PX)
   ========================================================================== */
@media (max-width: 768px) {
    .section-title { font-size: 1.7rem; }
    
    /* Hero móvil */
    .hero-bottom-text { bottom: 5% !important; }
    .hero-bottom-text h1 { font-size: 1.5rem !important; }
    .hero-bottom-text p { font-size: 0.9rem !important; max-width: 280px; }

    /* Ingredientes móvil */
    .compound-item { flex-direction: column; text-align: center; }

    /* Beneficios móvil */
    .benefit-card { min-height: 180px !important; }
    .benefit-content { width: 65% !important; padding: 15px 20px !important; background: linear-gradient(to right, rgba(249,222,231,1) 0%, rgba(249,222,231,0.98) 65%, transparent 100%) !important; }
    .benefit-content h3 { font-size: 1.15rem !important; }
    .benefit-content p { font-size: 0.88rem !important; line-height: 1.2 !important; }

    /* Precios móvil */
    .pricing-mosaic-new { display: flex; flex-direction: column; padding: 0 15px; }
    .card-v-custom { height: 380px; }
    .card-h-custom { height: 150px !important; background-position: 115% center !important; }
    .card-h-content { width: 68% !important; padding: 15px !important; }
    .duration { font-size: 0.72rem !important; white-space: nowrap; }

    /* Testimonios móvil */
    .slide { width: 255px; padding: 20px; }
    .trust-card { width: 95%; }

    /* Otros móvil */
    .alt-buying-grid { grid-template-columns: 1fr; }
    .alt-card { min-height: 170px !important; }
    .alt-content { width: 68% !important; padding: 15px !important; }
    .medical-container { flex-direction: column; text-align: center; padding: 30px 20px; }
}