:root {
    --navy: #152238;
    --blue: #4D86D8;
    --light-blue: #f3f8fb;
    --border: #dbe7f3;
    --white: #ffffff;
    --shadow: 0 8px 24px rgba(21, 34, 56, 0.08);
    --shadow-hover: 0 14px 35px rgba(21, 34, 56, 0.12);
    --radius: 16px;
    --container: 1120px;
  }
  
  /* Base */
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--navy);
    background: var(--white);
  }
  
  h1,
  h2,
  h3,
  p {
    margin-top: 0;
  }
  
  h1 {
    font-size: 2.5rem;
    line-height: 1.25;
  }
  
  h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  h3 {
    font-size: 1.5rem;
    line-height: 1.25;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* Reusable layout */
  .container,
  .page-container,
  .banner-container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
  }
  
  .narrow-container {
    width: min(820px, calc(100% - 48px));
    margin: 0 auto;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-light,
  .highlight-section {
    background: var(--light-blue);
  }
  
  .section-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
  }
  
  .section-heading::before {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--blue);
    border-radius: 999px;
    margin: 0 auto 22px;
  }
  
  .section-heading h2 {
    margin-bottom: 10px;
  }
  
  .section-intro {
    line-height: 1.6;
  }

  .section-heading p {
    margin-bottom: 0;
    line-height: 1.6;
}
  
  .section-intro {
    max-width: 720px;
    margin-bottom: 26px;
  }
  
  /* Shared components */
  .button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  
  .card,
  .process-card,
  .pricing-feature,
  .contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .contact-form .button {
    margin-top: 10px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
    background: #fbfdff;
    }
    .form-group input:hover,
    .form-group select:hover,
    .form-group textarea:hover {
    border-color: var(–blue);
    }
    textarea {
    resize: vertical;
    }
  
  .icon-circle,
  .process-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  /* Header */
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8%;
    border-bottom: 1px solid #e5e5e5;
    background: var(--white);
  }
  
  .logo img {
    height: 75px;
    width: auto;
  }
  
  nav a {
    position: relative;
    margin-left: 42px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
  }
  
  nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transform: translateX(-50%);
    transition: width 0.25s ease;
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  /* Home hero */
  .hero {
    display: flex;
    align-items: center;
    min-height: 520px;
    background: var(--light-blue);
    overflow: hidden;
  }
  
  .hero-content {
    width: 48%;
    max-width: 520px;
    margin-left: max(24px, calc((100vw - 1200px) / 2));
    position: relative;
    z-index: 2;
  }
  
  .hero-image {
    flex: 1;
    height: 520px;
    position: relative;
    overflow: hidden;
  }
  
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
  
  .hero-image::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 180px;
    z-index: 2;
    background: linear-gradient(
      to right,
      var(--light-blue) 0%,
      rgba(243, 248, 251, 0.95) 20%,
      rgba(243, 248, 251, 0.75) 45%,
      rgba(243, 248, 251, 0) 100%
    );
  }
  
  /* Interior page hero */
  .page-hero {
    padding: 28px 0;
    background: var(--light-blue);
  }

  .page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    margin-bottom: 0;
    max-width: 820px;
    font-size: 15px;
}
.page-hero-image {
    display: flex;
    align-items: center;
    padding: 0;
    min-height: 250px;
    background: var(--light-blue);
    overflow: hidden;
    }
    
    .page-hero-image .page-hero-copy {
    width: 48%;
    max-width: 620px;
    margin-left: max(24px, calc((100vw - 1200px) / 2));
    position: relative;
    z-index: 2;
    }
    
    .page-hero-photo {
    flex: 1;
    height: 250px;
    position: relative;
    overflow: hidden;
    }
    
    .page-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    }
    
    .page-hero-photo::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 260px;
        height: 100%;
        background: linear-gradient(
        to right,
        var(--light-blue) 0%,
        rgba(243, 248, 251, 0.95) 25%,
        rgba(243, 248, 251, 0.65) 55%,
        rgba(243, 248, 251, 0) 100%
        );
        z-index: 2;
        pointer-events: none;
        }
  /* Home features */
  .features {
    text-align: center;
    padding: 45px 0;
  }
  
  .features h2 {
    margin-bottom: 32px;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: min(1250px, calc(100% - 48px));
    margin: 0 auto;
  }
  
  .feature-card {
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }
  
  .feature-icon {
    margin-bottom: 18px;
  }
  
  .feature-icon img {
    width: 75px;
    height: 75px;
    margin: 0 auto;
  }
  
  .feature-card h3 {
    font-size: 1.05rem;
    line-height: 1.4;
  }
  
  /* Process page */
  .process-section {
    padding: 70px 0;
  }
  
  .process-feature {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
  }

  .process-icon img {
    width: 40px;
    height: 40px;
  }
  
  .process-copy {
    min-width: 0;
  }
  
  .process-copy h3 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  
  .process-copy p {
    max-width: 460px;
    margin-bottom: 18px;
  }
  
  .check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
  }
  
  .check-list li {
    margin-bottom: 9px;
    font-size: 1.05rem;
  }
  
  .check-list li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 800;
    margin-right: 12px;
  }

  .process-title {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

}

.process-title h3 {

    margin: 0;

}
  
  .process-image {
    display: flex;
    justify-content: center;
  }
  
  .process-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
  }
  
  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  
  .process-card {
    padding: 26px;
  }
  
  .process-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  
    gap: 22px;
  }
  
  .summary-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}
  
  .summary-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    margin-bottom: 14px;
  }

  .summary-title .process-icon {
    width: 42px;
    height: 42px;
}

.summary-title .process-icon img {
    width: 22px;
    height: 22px;
}
  
  .summary-title img {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }
  
  .summary-title h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.2;
  }
  
  .summary-card p {
    margin: 0;
    line-height: 1.5;
  }
  
  .process-summary h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  
  /* Pricing */
  .pricing-feature {
    padding: 34px;
    margin-bottom: 45px;
  }
  
  .eyebrow {
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .price-table {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  
  .price-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
  }
  
  .price-row:last-child {
    border-bottom: none;
  }
  
  /* Contact */
  .contact-form {
    padding: 34px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  
  .form-group {
    margin-bottom: 16px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfdceb;
    border-radius: 10px;
    font: inherit;
    color: var(--navy);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(77, 134, 216, 0.15);
  }
  
  /* Footer */
  footer {
    padding: 30px 8%;
    background: var(--navy);
    color: white;
  }

  .pricing-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 42px;
    padding: 34px;
    align-items: start;
}

.pricing-main h2 {
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-weight: 700;
    margin-bottom: 18px;
}

.pricing-guide h3 {
    margin-bottom: 18px;
}

.price-table {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row strong {
    white-space: nowrap;
}
  
  /* Mobile */
  @media (max-width: 900px) {
    .process-feature {
      grid-template-columns: 1fr;
      gap: 35px;
    }
  
    .process-summary {
      grid-template-columns: 1fr 1fr;
    }
  
    .feature-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .site-header {
      flex-direction: column;
      gap: 18px;
    }
  
    nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    nav a {
      margin: 8px 14px;
      font-size: 18px;
    }
  
    .hero {
      flex-direction: column-reverse;
      min-height: auto;
    }
  
    .hero-content {
      width: 100%;
      max-width: none;
      margin-left: 0;
      padding: 40px 24px;
    }
  
    .hero-image {
      width: 100%;
      height: 260px;
    }
  
    .hero-image::before {
      display: none;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.6rem;
    }
  
    h3 {
      font-size: 1.25rem;
    }
  
    .button {
      width: 100%;
      text-align: center;
    }
  }
  
  @media (max-width: 600px) {
    .container,
    .page-container,
    .banner-container,
    .narrow-container {
      width: calc(100% - 32px);
    }
  
    .section,
    .process-section {
      padding: 50px 0;
    }
  
    .section-heading {
      text-align: left;
    }
  
    .section-heading::before {
      margin-left: 0;
    }
  
    .process-copy h3 {
      font-size: 1.6rem;
    }
  
    .process-summary,
    .process-grid,
    .feature-grid,
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .process-summary div {
      border-right: none;
      border-bottom: 1px solid var(--border);
    }
  
    .process-summary div:last-child {
      border-bottom: none;
    }
  
    .price-row {
      flex-direction: column;
    }
  }