/* ========== HERO PRESTATION ========== */
    .hero-presta {
      position: relative;
      min-height: 540px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }
    .hero-presta-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, transparent 100%),
        url('https://drive.google.com/thumbnail?id=1kGTzrzTBX7JMX_hj-_lXYO-NKIlFWAhY&sz=w2000') center/cover no-repeat;
    }
    /* Decorative tire/wheel shapes */
    .hero-presta-figure {
      position: absolute;
      right: 2%;
      bottom: 0;
      top: 0;
      width: 50%;
      overflow: hidden;
      display: none;
    }
    .hero-wheel {
      position: absolute;
      border-radius: 50%;
      border: 3px solid rgba(255,255,255,0.08);
    }
    .hero-wheel.w1 {
      width: 340px; height: 340px;
      right: 10%; top: 50%;
      transform: translateY(-50%);
      background: radial-gradient(circle at 40% 40%, rgba(100,100,100,0.25) 0%, rgba(40,40,40,0.35) 50%, rgba(20,20,20,0.5) 100%);
    }
    .hero-wheel.w1::before {
      content: '';
      position: absolute;
      inset: 30px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.06);
      background: radial-gradient(circle, rgba(80,80,80,0.3) 0%, rgba(30,30,30,0.4) 100%);
    }
    .hero-wheel.w1::after {
      content: '';
      position: absolute;
      inset: 80px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(120,120,120,0.2) 0%, rgba(50,50,50,0.3) 100%);
      border: 1px solid rgba(255,255,255,0.04);
    }
    .hero-wheel.w2 {
      width: 160px; height: 160px;
      right: 55%; bottom: 15%;
      background: radial-gradient(circle, rgba(80,80,80,0.2) 0%, rgba(30,30,30,0.3) 100%);
    }
    .hero-presta-content {
      position: relative;
      z-index: 2;
      padding: 80px 56px 64px;
      max-width: 600px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-presta-breadcrumb {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      opacity: 0.65;
      margin-bottom: 20px;
    }
    .hero-presta-breadcrumb a {
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .hero-presta h1 {
      font-size: 54px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.04;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }
    .hero-presta h1 span { color: var(--orange); }
    .hero-presta .hero-desc {
      font-size: 15px;
      line-height: 1.7;
      opacity: 0.8;
      margin-bottom: 36px;
      max-width: 470px;
    }
    .hero-presta .btn-rdv-hero {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 16px 32px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: background .2s;
      width: fit-content;
    }
    .hero-presta .btn-rdv-hero:hover { background: #d9551a; }

    /* ========== SCROLL BANNER ========== */
    .scroll-banner {
      background: var(--orange);
      color: #fff;
      padding: 13px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .scroll-banner-track {
      display: inline-flex;
      animation: scrollBanner 25s linear infinite;
    }
    .scroll-banner-item {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }
    .scroll-banner-item::after {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #fff;
      flex-shrink: 0;
    }
    @keyframes scrollBanner {
      0% { transform: translateX(0); }
      100% { transform: translateX(-16.666%); }
    }

    /* ========== STATS BAR ========== */
    .stats-bar {
      background: #fff;
      padding: 52px 56px;
      color: #1a1a1a;
    }
    .stats-bar-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .stat-bar-item { text-align: center; }
    .stat-bar-item .stat-number {
      font-size: 60px;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -1px;
    }
    .stat-bar-item .stat-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      opacity: 0.65;
      line-height: 1.4;
      color: var(--dark);
    }

    /* ========== ADAS SECTION ========== */
    .adas-section {
      padding: 80px 56px;
      background: var(--gray);
    }
    .section-badge {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 7px 18px;
      border-radius: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }
    .adas-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .adas-left h2 {
      font-size: 38px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.08;
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }
    .adas-left p {
      font-size: 14px;
      line-height: 1.8;
      color: #444;
      margin-bottom: 16px;
    }
    .adas-left p .highlight {
      color: var(--orange);
      font-weight: 700;
    }
    .adas-buttons {
      display: flex;
      gap: 14px;
      margin-top: 28px;
    }
    .btn-adas-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      color: #fff;
      padding: 14px 28px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      transition: background .2s;
    }
    .btn-adas-primary:hover { background: #d9551a; }
    .btn-adas-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--dark);
      padding: 14px 28px;
      border-radius: 30px;
      border: 2px solid #ccc;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      transition: all .2s;
    }
    .btn-adas-secondary:hover { border-color: var(--dark); }

    /* ADAS Feature cards */
    .adas-right {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .adas-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #eee;
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .adas-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    .adas-card.active {
      background: var(--orange);
      border-color: var(--orange);
    }
    .adas-card-text h3 {
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 4px;
      color: var(--dark);
    }
    .adas-card.active .adas-card-text h3 { color: #fff; }
    .adas-card-text p {
      font-size: 12px;
      color: #666;
      line-height: 1.5;
    }
    .adas-card.active .adas-card-text p { color: rgba(255,255,255,0.85); }
    .adas-card-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .adas-card.active .adas-card-icon { background: #fff; }

    /* ========== ADAS INFO SECTION ========== */
    .adas-info {
      background: var(--dark);
      padding: 64px 56px;
      text-align: center;
      color: #fff;
    }
    .adas-info h2 {
      font-size: 22px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }
    .adas-info p {
      font-size: 14px;
      line-height: 1.8;
      color: rgba(255,255,255,0.7);
      max-width: 780px;
      margin: 0 auto;
    }
    .adas-info p .highlight {
      color: var(--orange);
      font-weight: 700;
    }

    /* ========== CTA BANNER ========== */
    .cta-banner {
      background: var(--orange);
      padding: 48px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .cta-banner-text h2 {
      font-size: 28px;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
      font-style: italic;
      margin-bottom: 6px;
    }
    .cta-banner-text p {
      font-size: 14px;
      color: rgba(255,255,255,0.85);
    }
    .cta-banner .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: #fff;
      padding: 16px 36px;
      border-radius: 30px;
      border: 2px solid #fff;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
      transition: background .2s;
      position: relative;
      overflow: hidden;
    }
    .cta-banner .btn-cta:hover { background: rgba(255,255,255,0.15); }
    .cta-banner .btn-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
      transform: translateX(-100%);
    }
    .cta-banner .btn-cta:hover::after { animation: shimmer .8s ease forwards; }

    /* ========== NOS AUTRES SERVICES ========== */
    .other-services {
      background: var(--dark);
      padding: 56px 56px 64px;
      color: #fff;
      position: relative;
    }
    .other-services::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--orange);
    }
    .other-services h2 {
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 28px;
      letter-spacing: 0.5px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      position: relative;
    }
    .service-card {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: pointer;
      transition: transform .4s ease, box-shadow .4s ease;
    }
    .service-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 12px 32px rgba(0,0,0,0.3);
      z-index: 2;
    }
    .service-card .card-bg { position: absolute; inset: 0; }
    .service-card .card-bg.s1 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%), url('https://drive.google.com/thumbnail?id=1IDcX0wKcIVdNLNl66Cp_LH9Cq6OFZo_h&sz=w2000') center/cover no-repeat; }
    .service-card .card-bg.s2 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%), url('https://drive.google.com/thumbnail?id=1kGTzrzTBX7JMX_hj-_lXYO-NKIlFWAhY&sz=w2000') center/cover no-repeat; }
    .service-card .card-bg.s3 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%), url('https://drive.google.com/thumbnail?id=1Xf_l_jaFnIqTgqsCEYOC6iJf-1JZSxoY&sz=w2000') center/cover no-repeat; }
    .service-card .card-bg.s4 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%), url('https://drive.google.com/thumbnail?id=1LC5IQDS2goQ5HsYxM3pytHdVx3IKxkMg&sz=w2000') center/cover no-repeat; }
    .service-card .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 55%);
      z-index: 1;
    }
    .service-card h3 {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.35;
      z-index: 2;
    }
    .service-card h3::before {
      content: '';
      display: block;
      width: 28px;
      height: 3px;
      background: var(--orange);
      margin-bottom: 8px;
      border-radius: 2px;
    }
    .services-scroll-btn {
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      transition: background .2s;
    }
    .services-scroll-btn:hover { background: rgba(255,255,255,0.1); }

    /* ========== ILS PARLENT DE NOUS ========== */
    .media {
      padding: 64px 56px 72px;
      background: var(--gray);
      text-align: center;
    }
    .media h2 {
      font-size: 26px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 44px;
      display: inline-block;
      border-bottom: 3px solid var(--dark);
      padding-bottom: 8px;
    }
    .media-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .media-logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60px;
      min-width: 130px;
    }
    .logo-bfm {
      font-family: 'Arial Black', Arial, sans-serif;
      font-weight: 900;
      display: flex;
      align-items: flex-end;
    }
    .logo-bfm .bfm-text { font-size: 30px; color: #000; line-height: 1; }
    .logo-bfm .tv-text {
      font-size: 18px;
      font-weight: 900;
      color: #fff;
      background: #0055A4;
      padding: 2px 5px 4px;
      line-height: 1;
    }
    .logo-cnews {
      display: flex;
      align-items: center;
      font-family: 'Arial', sans-serif;
      font-weight: 900;
      font-size: 24px;
    }
    .logo-cnews .c-letter { color: #000; margin-right: 1px; }
    .logo-cnews .news-box {
      background: #E3000B;
      color: #fff;
      padding: 6px 12px;
      border-radius: 3px;
      font-size: 20px;
      letter-spacing: 1px;
    }
    .logo-rmc {
      background: #E3000B;
      color: #fff;
      font-family: 'Arial Black', Arial, sans-serif;
      font-size: 26px;
      font-weight: 900;
      padding: 8px 20px;
      border-radius: 4px;
      letter-spacing: 3px;
    }
    .logo-lepoint {
      background: #BE1622;
      color: #fff;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 22px;
      font-weight: 700;
      font-style: italic;
      padding: 10px 22px;
      border-radius: 4px;
    }

    /* ========== SEO CONTENT ========== */
    .seo-content {
      padding: 72px 56px;
      background: var(--gray);
    }
    .seo-content-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .seo-content .section-badge {
      display: inline-block;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 11px;
      font-weight: 700;
      padding: 7px 18px;
      border-radius: 20px;
      text-transform: uppercase;
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }
    .seo-content h2 {
      font-size: 32px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 32px;
      letter-spacing: -0.5px;
    }
    .seo-content h3 {
      font-size: 20px;
      font-weight: 800;
      margin-top: 36px;
      margin-bottom: 16px;
      color: var(--dark);
    }
    .seo-content p {
      font-size: 15px;
      line-height: 1.8;
      color: #444;
      margin-bottom: 18px;
    }
    @media (max-width: 768px) {
      .seo-content { padding: 48px 20px; }
      .seo-content h2 { font-size: 26px; }
      .seo-content h3 { font-size: 18px; }
      .seo-content p { font-size: 14px; }
    }
    @media (max-width: 420px) {
      .seo-content h2 { font-size: 22px; }
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--dark);
      color: #fff;
      padding: 56px 56px 28px;
    }
    .footer-main {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo-text {
      font-size: 30px;
      font-weight: 900;
      font-style: italic;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.6;
      opacity: 0.6;
      margin-bottom: 22px;
      max-width: 280px;
    }
    .btn-rdv-footer {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 14px 26px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .btn-rdv-footer:hover { background: #d9551a; }
    .footer-col h4 {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 13px;
      opacity: 0.55;
      transition: opacity .2s;
    }
    .footer-col ul li a:hover { opacity: 1; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom .copyright { font-size: 12px; opacity: 0.4; }
    .footer-bottom-links { display: flex; gap: 28px; }
    .footer-bottom-links a { font-size: 12px; opacity: 0.45; transition: opacity .2s; }
    .footer-bottom-links a:hover { opacity: 1; }

    /* ========== ANIMATIONS ========== */
    .anim-fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
    }
    .anim-fade-up.visible { opacity: 1; transform: translateY(0); }
    .anim-fade-up.delay-1 { transition-delay: .1s; }
    .anim-fade-up.delay-2 { transition-delay: .2s; }
    .anim-fade-up.delay-3 { transition-delay: .3s; }
    .anim-fade-up.delay-4 { transition-delay: .4s; }

    /* Hero entrance */
    .hero-presta-content > * {
      opacity: 0;
      transform: translateY(25px);
      animation: heroFadeIn .7s cubic-bezier(.25,.46,.45,.94) forwards;
    }
    .hero-presta-content > *:nth-child(1) { animation-delay: .1s; }
    .hero-presta-content > *:nth-child(2) { animation-delay: .25s; }
    .hero-presta-content > *:nth-child(3) { animation-delay: .4s; }
    .hero-presta-content > *:nth-child(4) { animation-delay: .55s; }
    @keyframes heroFadeIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Hover effects */
    .stat-bar-item { transition: transform .3s ease; }
    .stat-bar-item:hover { transform: scale(1.05); }
    .stat-bar-item:hover .stat-number { text-shadow: 0 0 20px rgba(242,101,34,0.4); }
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* ========== RESPONSIVE — TABLET ========== */
    @media (max-width: 1100px) {
      .header { padding: 10px 32px; }
      .header-nav { gap: 18px; }
      .header-nav a { font-size: 13px; }
      .hero-presta h1 { font-size: 42px; }
      .hero-presta-content { padding: 60px 36px 48px; }
      .stats-bar { padding: 40px 36px; }
      .stat-bar-item .stat-number { font-size: 48px; }
      .adas-section { padding: 60px 36px; }
      .adas-layout { gap: 36px; }
      .adas-left h2 { font-size: 32px; }
      .adas-info { padding: 48px 36px; }
      .cta-banner { padding: 40px 36px; }
      .cta-banner-text h2 { font-size: 24px; }
      .other-services { padding: 48px 36px 56px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .services-scroll-btn { display: none; }
      .media { padding: 48px 36px; }
      .footer { padding: 48px 36px 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ========== RESPONSIVE — MOBILE ========== */
    @media (max-width: 768px) {
      .header { padding: 10px 20px; }
      .header-nav, .header-actions { display: none; }
      .burger { display: flex; }
      .logo-wrap img { width: 90px; height: 54px; }

      .hero-presta { min-height: 420px; }
      .hero-presta-content { padding: 48px 24px 40px; max-width: 100%; }
      .hero-presta h1 { font-size: 32px; }
      .hero-presta .hero-desc { font-size: 13px; }
      .hero-presta-figure { display: none; }

      .scroll-banner-item { font-size: 11px; padding: 0 14px; }

      .stats-bar { padding: 36px 20px; }
      .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
      .stat-bar-item .stat-number { font-size: 40px; }
      .stat-bar-item .stat-label { font-size: 10px; }

      .adas-section { padding: 48px 20px; }
      .adas-layout { grid-template-columns: 1fr; gap: 32px; }
      .adas-left h2 { font-size: 28px; }
      .adas-buttons { flex-direction: column; }
      .btn-adas-primary, .btn-adas-secondary { justify-content: center; }

      .adas-info { padding: 40px 20px; }
      .adas-info h2 { font-size: 18px; }
      .adas-info p { font-size: 13px; }

      .cta-banner { flex-direction: column; padding: 36px 20px; text-align: center; }
      .cta-banner-text h2 { font-size: 22px; }
      .cta-banner .btn-cta { width: 100%; justify-content: center; padding: 16px 24px; }

      .other-services { padding: 40px 20px 48px; }
      .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .service-card h3 { font-size: 12px; bottom: 14px; left: 14px; }

      .media { padding: 40px 20px 48px; }
      .media h2 { font-size: 22px; }
      .media-logos { flex-direction: column; gap: 20px; }

      .footer { padding: 36px 20px 20px; }
      .footer-main { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }

    /* ========== MOBILE SMALL ========== */
    @media (max-width: 420px) {
      .header { padding: 8px 16px; }
      .logo-wrap img { width: 80px; height: 48px; }
      .hero-presta { min-height: 360px; }
      .hero-presta-content { padding: 36px 18px 32px; }
      .hero-presta h1 { font-size: 26px; }
      .hero-presta .hero-desc { font-size: 12px; }
      .hero-presta .btn-rdv-hero { padding: 14px 24px; font-size: 11px; }
      .stat-bar-item .stat-number { font-size: 34px; }
      .adas-section { padding: 40px 18px; }
      .adas-left h2 { font-size: 24px; }
      .adas-left p { font-size: 13px; }
      .adas-card { padding: 16px 18px; }
      .adas-card-text h3 { font-size: 13px; }
      .adas-card-text p { font-size: 11px; }
      .adas-info h2 { font-size: 16px; }
      .cta-banner-text h2 { font-size: 18px; }
      .service-card h3 { font-size: 11px; }
      .media h2 { font-size: 20px; }
    }