:root {
    --ak-primary: #003b7a;
    --ak-primary-dark: #002a56;
    --ak-accent: #0b63ce;
    --ak-accent-dark: #084ea1;
    --ak-text: #1e293b;
    --ak-muted: #64748b;
    --ak-bg: #f5f8fc;
    --ak-bg-alt: #eaf1f8;
    --ak-white: #ffffff;
    --ak-border: #d7e2ee;
    --ak-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    --ak-radius: 18px;
    --ak-max: 1200px;
  }

  .ak-home {
    color: var(--ak-text);
    background: var(--ak-white);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

  .ak-topbar {
    background: var(--ak-primary-dark);
    color: rgba(255,255,255,0.88);
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .ak-topbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    text-align: center;
  }

  .ak-topbar p {
    margin: 0;
  }

  .ak-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    background:
      linear-gradient(135deg, rgba(0, 59, 122, 0.94), rgba(0, 42, 86, 0.92)),
      url('/application/files/header-bg-ford-warranty.jpg') center/cover no-repeat;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
  }

  .ak-site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
  }

  .ak-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 0;
  }

  .ak-brand-logo {
    width: 108px;
    max-width: 30vw;
    height: auto;
    display: block;
    flex: 0 0 auto;
  }

  .ak-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .ak-brand-kicker {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
  }

  .ak-brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--ak-white);
  }

  .ak-brand-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    max-width: 420px;
  }

  .ak-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
    flex-wrap: wrap;
  }

  .ak-main-nav {
    margin-left: 0;
  }

  .ak-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .ak-main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .ak-main-nav a:hover,
  .ak-main-nav a:focus {
    background: rgba(255,255,255,0.12);
    color: var(--ak-white);
  }

  .ak-header-purchase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--ak-white);
    color: var(--ak-primary);
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .ak-header-purchase:hover,
  .ak-header-purchase:focus {
    background: #eef5ff;
    color: var(--ak-primary-dark);
  }

  .ak-container {
    width: min(calc(100% - 32px), var(--ak-max));
    margin: 0 auto;
  }

  .ak-section {
    padding: 72px 0;
  }

  .ak-section-sm {
    padding: 52px 0;
  }

  .ak-eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    font-size: 0.82rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ak-accent);
  }

  .ak-title-xl {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .ak-title-lg {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .ak-lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ak-muted);
    max-width: 780px;
  }

  .ak-center {
    text-align: center;
  }

  .ak-grid {
    display: grid;
    gap: 24px;
  }

  .ak-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ak-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ak-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ak-card {
    background: var(--ak-white);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    box-shadow: var(--ak-shadow);
    padding: 28px;
    height: 100%;
  }

  .ak-card h3,
  .ak-card h4 {
    margin: 0 0 10px;
    color: #0f172a;
  }

  .ak-card p,
  .ak-card li {
    color: var(--ak-muted);
    line-height: 1.7;
  }

  .ak-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .ak-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
  }

  .ak-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ak-accent);
  }

  .ak-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }

  .ak-btns .HTMLBlock, .ak-btns p {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .ak-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .ak-btn:hover,
  .ak-btn:focus {
    transform: translateY(-1px);
  }

  .ak-btn-primary {
    background: var(--ak-accent);
    color: var(--ak-white);
    box-shadow: 0 12px 26px rgba(11, 99, 206, 0.28);
  }

  .ak-btn-primary:hover,
  .ak-btn-primary:focus {
    background: var(--ak-accent-dark);
    color: var(--ak-white);
  }

  .ak-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--ak-white);
  }

  .ak-btn-secondary-dark {
    background: transparent;
    border: 1px solid var(--ak-border);
    color: var(--ak-primary);
  }

  .ak-hero {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(0, 59, 122, 0.97), rgba(0, 42, 86, 0.95)),
      url('/application/files/hero-ford-warranty.jpg') center/cover no-repeat;
    color: var(--ak-white);
  }

  .ak-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 34%);
    pointer-events: none;
  }

  .ak-hero-inner {
    position: relative;
    z-index: 1;
    padding: 88px 0 70px;
  }

  .ak-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 30px;
    align-items: center;
  }

  .ak-hero p {
    color: rgba(255,255,255,0.9);
  }

  .ak-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .ak-hero-point {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .ak-quote-box {
    background: var(--ak-white);
    color: var(--ak-text);
    border-radius: 22px;
    box-shadow: var(--ak-shadow);
    padding: 28px;
  }

  .ak-quote-box h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: #0f172a;
  }

  .ak-quote-box p {
    margin: 0 0 18px;
    color: var(--ak-muted);
    line-height: 1.65;
  }

  .ak-form-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--ak-muted);
  }

  .ak-trustbar {
    background: var(--ak-bg);
    border-top: 1px solid var(--ak-border);
    border-bottom: 1px solid var(--ak-border);
  }

  .ak-trustbar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .ak-trust-item {
    text-align: center;
    padding: 22px 16px;
  }

  .ak-trust-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--ak-primary);
    margin-bottom: 6px;
  }

  .ak-trust-item span {
    color: var(--ak-muted);
    line-height: 1.55;
    font-size: 0.96rem;
  }

  .ak-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--ak-bg-alt);
    color: var(--ak-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .ak-plan-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--ak-bg-alt);
    color: var(--ak-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .ak-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
  }

  .ak-process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
  }

  .ak-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ak-primary);
    color: var(--ak-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
  }

  .ak-faq details {
    border: 1px solid var(--ak-border);
    border-radius: 14px;
    background: var(--ak-white);
    padding: 18px 20px;
  }

  .ak-faq details + details {
    margin-top: 14px;
  }

  .ak-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
  }

  .ak-faq p {
    margin: 12px 0 0;
    color: var(--ak-muted);
    line-height: 1.7;
  }

  .ak-cta {
    background: linear-gradient(135deg, var(--ak-primary), var(--ak-primary-dark));
    color: var(--ak-white);
  }

  .ak-cta p,
  .ak-cta .ak-lead {
    color: rgba(255,255,255,0.88);
  }

  @media (max-width: 1180px) {
    .ak-site-header-inner {
      flex-direction: column;
      align-items: flex-start;
    }

    .ak-header-actions {
      width: 100%;
      margin-left: 0;
      justify-content: space-between;
    }

    .ak-main-nav ul {
      justify-content: flex-start;
    }
  }

  @media (max-width: 1080px) {
    .ak-grid-4 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ak-hero-grid,
    .ak-split {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 820px) {
    .ak-topbar-inner {
      padding: 9px 0;
    }

    .ak-header-actions {
      width: 100%;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 10px;
    }

    .ak-main-nav ul {
      gap: 6px;
    }

    .ak-main-nav a {
      min-height: 38px;
      padding: 0 12px;
      font-size: 0.92rem;
    }

    .ak-brand {
      align-items: flex-start;
    }

    .ak-brand-logo {
      width: 88px;
    }

    .ak-brand-title {
      font-size: 1.05rem;
    }

    .ak-brand-subtitle {
      font-size: 0.84rem;
      max-width: 100%;
    }

    .ak-section {
      padding: 60px 0;
    }
    .ak-section {
      padding: 60px 0;
    }

    .ak-grid-3,
    .ak-grid-2,
    .ak-grid-4,
    .ak-trustbar-grid,
    .ak-hero-points {
      grid-template-columns: 1fr;
    }

    .ak-hero-inner {
      padding: 72px 0 60px;
    }
  }
  
  
  
  
 
 
body {
    margin: 0;
}  
/* Mobile toggle button */
.text-right {
    text-align: right;
    width: 100%;
    display: none;
}
.ak-mobile-toggle {
    font-size: 30px;
    cursor: pointer;
    margin-top: 10px;
    color: #ffffff;
}
/* Footer */
div#Footer {
    flex-wrap: wrap;
    background: #ffffff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    color: #000000;
}
div#Footer a {
    color: #000000;
}

/* Mobile styles */
@media (max-width: 768px) {
    .text-right {
        display: block;
    }
    #ak-mobile-menu {
        display: none;
        width: 100%;
        background: #0c2d50;
        text-align: center;
        padding-bottom: 20px;
    }
    #ak-mobile-menu.active {
        display: block;
    }
    .ak-main-nav ul {
        display: block;
        padding: 10px 0;
    }
    .ak-main-nav ul li {
        display: block;
        margin: 10px 0;
    }
}  






#PricingForm {
    max-width: 304px;
    height: 328px;
    background-image: url(https://andersonandkoch-ford-warranty.com/themes/Updated_Logo/images/pricing_bg.jpg);
    background-repeat: no-repeat;
    margin: 0 auto;
}
@media only screen and (min-width: 40.063em) {
    h3 {
        font-size: 1.6875rem;
    }
}
#PricingForm h3 {
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11pt;
    font-weight: bold;
    padding: 23px 0px 0px 0px;
    text-align: center;
    line-height: 2.6;
}
#app {
    width: 80%;
    margin: 26px auto 0 auto;
}
.hide {
    display: none;
    margin: 0;
    padding: 0;
}
select:disabled {
    background-color: #ddd;
    cursor: default;
}
#app select {
    height: 1.9em;
    padding: .25rem;
    font-size: 14px;
    width: 100%;
    margin: 0 0 1rem 0 !important;
}
input#submitInfo {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    padding-top: 0.625rem;
    padding-bottom: 0.6875rem;
    font-size: 0.6875rem;
    border-style: solid;
    border-width: 0;
    cursor: pointer;
    background-color: #0b63ce;
    border-color: #007095;
    color: #fff;
}
input#submitInfo[disabled] {
    background-color: #285381;
    border-color: #007095;
    color: #fff;
    cursor: default;
    opacity: 0.7;
    box-shadow: none;
}
@media only screen and (max-width: 399px) {
    #PricingForm {
        background-size: 100% 100% !important;
    }   
}
.bg-danger {
    background-color: #dc3545 !important;
    color: #fff;
}

