        /* --- Reset y Variables de Marca --- */
  :root {
            --azul-divi: #27394d;
            --azul-hover: #1d4874;
            --amarillo-banner: #ffcc00;
            --dorado-texto: #e09900;
            --rojo-precio: #a92a2b;
            --gris-texto: #666666;
            --gris-oscuro: #333333;
            --blanco: #ffffff;
            --brand-light: #f4f7f9;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 10px 25px rgba(39, 57, 77, 0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Poppins', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--gris-oscuro);
            background-color: var(--brand-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, .btn-action {
            font-family: var(--font-display);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .screen-reader-text {
            border: 0;
            clip: rect(1px, 1px, 1px, 1px);
            clip-path: inset(50%);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            width: 1px;
            word-wrap: normal !important;
        }

        /* --- Barra de Estado Superior --- */
        .top-banner {
            background-color: var(--azul-divi);
            color: #fff;
            font-size: 13px;
            padding: 10px 0;
            border-bottom: 3px solid var(--amarillo-banner);
        }

        .top-banner .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .top-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-info-item span.highlight {
            color: var(--amarillo-banner);
            font-weight: 700;
        }

        /* --- Enlace de Acción Rápida Móvil (CRO) --- */
        .quick-promo-trigger {
            background: linear-gradient(90deg, var(--rojo-precio), #c62828);
            color: white;
            text-align: center;
            padding: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: var(--transition);
        }
        .quick-promo-trigger:hover {
            filter: brightness(1.1);
        }

        /* --- Cabecera de Navegación --- */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .header-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            max-height: 60px;
            display: block;
            transition: var(--transition);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            align-items: center;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--gris-oscuro);
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--azul-hover);
            transition: var(--transition);
        }

        nav ul li a:hover::after, nav ul li a.active::after {
            width: 100%;
        }

        nav ul li a:hover {
            color: var(--azul-hover);
        }

        .btn-header-cta {
            background-color: var(--azul-divi);
            color: white;
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .btn-header-cta:hover {
            background-color: var(--azul-hover);
            box-shadow: 0 4px 12px rgba(39, 57, 77, 0.2);
        }
        .hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-main {
    background: linear-gradient(135deg, var(--amarillo-banner), #ffa600);
    color: var(--azul-divi);
    padding: 15px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.35);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}
.btn-outline {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 13px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.btn-main svg {
    width: 16px;
    height: 16px;
    fill: var(--azul-divi);
}
.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.5);
    background: linear-gradient(135deg, #ffe066, var(--amarillo-banner));
}
.btn-outline:hover {
    border-color: white;
    background-color: white;
    color: var(--azul-divi);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}
.btn-outline svg {
    width: 16px;
    height: 16px;
    fill: white;
    transition: var(--transition);
}

        /* --- Sección Héroe (Hero Section) --- */
        .hero-section {
            background: linear-gradient(135deg, rgba(39, 57, 77, 0.92) 40%, rgba(29, 72, 116, 0.7)), url('imagenes/taller-mecanica-carros-serviteca-f-h.png');
            background-size: cover;
            background-position: center;
            padding: 100px 0 120px 0;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 650px;
        }

        .badge-local {
            background-color: var(--amarillo-banner);
            color: var(--azul-divi);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .hero-content h2 {
            font-size: 44px;
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 16px;
            color: rgba(255,255,255,0.85);
            margin-bottom: 35px;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* --- Cotizador Inteligente en Tiempo Real --- */
        .calculator-card {
            background: white;
            border-radius: var(--radius-md);
            padding: 30px;
            box-shadow: var(--shadow-md);
            margin-top: -60px;
            position: relative;
            z-index: 10;
            border-top: 5px solid var(--azul-divi);
        }

        .calc-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--azul-divi);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .calc-grid {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 25px;
            align-items: start;
        }

        .calc-step-title {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--gris-texto);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .vehicle-selector {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .vehicle-option {
            border: 2px solid #e2e8f0;
            padding: 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            font-size: 14px;
            text-align: center;
        }

        .vehicle-option.selected {
            border-color: var(--azul-divi);
            background-color: rgba(39, 57, 77, 0.05);
            color: var(--azul-divi);
        }

        .services-selector {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .service-checkbox-label {
            border: 1px solid #e2e8f0;
            padding: 10px 12px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 500;
            transition: var(--transition);
            background-color: #fafbfc;
        }

        .service-checkbox-label:hover {
            background-color: #f1f5f9;
        }

        .service-checkbox-label.checked {
            border-color: var(--azul-divi);
            background-color: rgba(39, 57, 77, 0.02);
            font-weight: 600;
        }

        .calc-result-box {
            background-color: var(--brand-light);
            border-radius: var(--radius-sm);
            padding: 20px;
            text-align: center;
            border: 1px dashed #cbd5e1;
        }

        .calc-price {
            font-size: 28px;
            font-weight: 800;
            color: var(--azul-divi);
            margin: 10px 0;
        }

        .btn-calc-send {
            background-color: #25d366;
            color: white;
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            font-size: 13px;
            transition: var(--transition);
            margin-top: 15px;
        }
        .btn-calc-send:hover {
            filter: brightness(0.95);
        }

        /* --- Notificación / Alerta Flotante Customizada --- */
        .custom-alert {
            display: none;
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--rojo-precio);
            color: white;
            padding: 15px 30px;
            border-radius: var(--radius-sm);
            z-index: 3000;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            font-family: var(--font-display);
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        /* --- Sección Promociones Dinámicas (Pestañas) --- */
        .section-padding {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px auto;
        }

        .section-header h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--azul-divi);
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--gris-texto);
            font-size: 15px;
        }

        .tab-system {
            margin-bottom: 40px;
        }

        .tab-headers {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .tab-btn {
            padding: 12px 25px;
            border: none;
            background-color: white;
            color: var(--gris-texto);
            font-weight: 700;
            font-size: 14px;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .tab-btn.active {
            background-color: var(--azul-divi);
            color: white;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .promo-card {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            align-items: center;
        }

        .promo-img-pane {
            background-color: var(--azul-divi);
            height: 100%;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            position: relative;
        }

        .promo-img-pane img {
            max-width: 80%;
            height: auto;
        }

        .promo-badge-price {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--rojo-precio);
            color: white;
            font-weight: 800;
            font-size: 18px;
            padding: 8px 15px;
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 10px rgba(229,57,53,0.3);
        }

        .promo-text-pane {
            padding: 40px;
        }

        .promo-text-pane h3 {
            font-size: 26px;
            color: var(--azul-divi);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .promo-text-pane p {
            color: var(--gris-texto);
            font-size: 14px;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--azul-divi);
        }

        .features-list li::before {
            content: '✓';
            color: #25d366;
            font-weight: 900;
        }

        /* --- Sección Combos Especiales --- */
        .combos-container {
            background-color: #f1f5f9;
            padding: 80px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .combos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .combo-interactive-card {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .combo-interactive-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .combo-interactive-card.featured {
            border: 2px solid var(--azul-divi);
        }

        .combo-header-tag {
            background-color: var(--azul-divi);
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 12px;
            padding: 8px 15px;
            letter-spacing: 0.5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .combo-header-tag.accent-bg {
            background-color: var(--rojo-precio);
        }

        .combo-img-wrap {
            width: 100%;
            height: 220px;
            background-color: #fafbfc;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-bottom: 1px solid #e2e8f0;
        }

        .combo-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .combo-interactive-card:hover .combo-img-wrap img {
            transform: scale(1.05);
        }

        .combo-body {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .combo-body h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--azul-divi);
            margin-bottom: 15px;
        }

        .combo-services-list {
            list-style: none;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .combo-services-list li {
            font-size: 13px;
            color: var(--gris-oscuro);
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-weight: 500;
        }

        .combo-services-list li::before {
            content: "✓";
            color: #25d366;
            font-weight: 900;
            flex-shrink: 0;
        }

        .combo-pricing-grid {
            background-color: var(--brand-light);
            border-radius: var(--radius-sm);
            padding: 15px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
        }

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

        .price-col:first-child {
            border-right: 1px solid #cbd5e1;
        }

        .price-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--gris-texto);
            margin-bottom: 4px;
        }

        .price-amount {
            font-size: 16px;
            font-weight: 800;
            color: var(--rojo-precio);
        }

        .price-amount.alt-color {
            color: var(--azul-divi);
        }

        .btn-combo-order {
            background-color: #25d366;
            color: white;
            text-align: center;
            padding: 12px;
            border-radius: var(--radius-sm);
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: var(--transition);
        }

        .btn-combo-order:hover {
            filter: brightness(0.95);
            transform: translateY(-2px);
        }

        /* --- Módulo Peritaje Premium --- */
        .peritaje-section {
            background-color: var(--azul-divi);
            color: white;
            border-radius: var(--radius-lg);
            padding: 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 60px;
        }

        .peritaje-info h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
        }

        .peritaje-info p {
            color: rgba(255,255,255,0.75);
            font-size: 15px;
            margin-bottom: 25px;
        }

        .peritaje-visual img {
            width: 100%;
            border-radius: var(--radius-md);
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        }

        /* --- Catálogo Filtrable de Servicios --- */
        .filter-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: none;
            border: 1px solid #cbd5e1;
            padding: 8px 18px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 13px;
            color: var(--gris-oscuro);
            transition: var(--transition);
        }

        .filter-btn.active, .filter-btn:hover {
            background-color: var(--azul-divi);
            border-color: var(--azul-divi);
            color: white;
        }

        .services-grid-interactive {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .service-item-card {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }

        .service-item-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .service-card-body {
            padding: 25px;
        }

        .service-card-body h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--azul-divi);
        }

        .service-card-body p {
            font-size: 13px;
            color: var(--gris-texto);
            margin-bottom: 20px;
        }

        .service-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .service-badge-category {
            background-color: var(--brand-light);
            color: var(--azul-divi);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .service-link-wa {
            color: var(--azul-divi);
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
        }

        /* --- Acordeón FAQ Automotriz --- */
        .faq-section {
            background-color: white;
            padding: 60px 0;
            border-top: 1px solid #e2e8f0;
        }

        .faq-max-width {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            border-bottom: 1px solid #e2e8f0;
            padding: 15px 0;
        }

        .accordion-header {
            font-size: 16px;
            font-weight: 700;
            color: var(--azul-divi);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .accordion-header::after {
            content: '+';
            font-size: 20px;
            color: var(--azul-divi);
            font-weight: 400;
            transition: var(--transition);
        }

        .accordion-item.open .accordion-header::after {
            content: '−';
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
            color: var(--gris-texto);
            font-size: 14px;
        }

        .accordion-item.open .accordion-content {
            max-height: 1000px;
            padding-top: 15px;
            transition: max-height 0.5s ease-in-out;
        }

        /* --- Zona de Contacto y Mapas --- */
        .contact-section {
            background-color: var(--azul-divi);
            color: white;
            padding: 80px 0 0 0;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .contact-card-info {
            background-color: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-md);
            padding: 40px;
        }

        .contact-card-info h3 {
            font-size: 24px;
            color: var(--amarillo-banner);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .contact-card-info p.sub {
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-bottom: 30px;
        }

        .info-block {
            margin-bottom: 25px;
        }

        .info-block h4 {
            font-size: 13px;
            color: var(--amarillo-banner);
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .info-block p {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
        }

        .map-container-fluid {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            height: 100%;
            min-height: 400px;
            border: 2px solid rgba(255,255,255,0.1);
        }

        .map-container-fluid iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            display: block;
        }

        /* --- Footer --- */
        footer {
            background-color: #172431;
            padding: 30px 0;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .social-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            margin-left: 20px;
            font-weight: 600;
            transition: var(--transition);
        }

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

        /* --- Botón Flotante de WhatsApp --- */
        .whatsapp-floating {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37,211,102,0.4);
            z-index: 2000;
            text-decoration: none;
            transition: var(--transition);
            animation: pulse-wa 2s infinite;
        }

        .whatsapp-floating:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .whatsapp-floating svg {
            width: 32px;
            height: 32px;
            fill: #fff;
        }

        @keyframes pulse-wa {
            0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
            70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
            100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .combos-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 992px) {
            .calc-grid { grid-template-columns: 1fr; gap: 20px; }
            .promo-card { grid-template-columns: 1fr; }
            .promo-img-pane { min-height: 240px; }
            .peritaje-section { grid-template-columns: 1fr; gap: 30px; }
            .services-grid-interactive { grid-template-columns: repeat(2, 1fr); }
            .contact-layout { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            header { padding: 10px 0; }
            nav ul, .btn-header-cta { display: none; }
            .hero-content h2 { font-size: 32px; }
            .combos-grid { grid-template-columns: 1fr; }
            .services-grid-interactive { grid-template-columns: 1fr; }
            .section-header h2 { font-size: 26px; }
        }