  .sc-section *,
  .sc-section *::before,
  .sc-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .sc-section {
    font-family: 'DM Sans', sans-serif;
    background: #f4f7ff;
    padding: 5rem 2rem;
    margin-top: 150px;
  }

  .sc-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }

  /* ── Image ── */
  .sc-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 1.2rem;
    box-shadow: 0 24px 60px rgba(58, 95, 176, 0.16);
  }

  /* ── Content ── */
  .sc-content {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }

  .sc-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #3a5fb0;
  }

  .sc-eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1.5px;
    background: #3a5fb0;
    border-radius: 2px;
  }

  .sc-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: #3a5fb0;
    letter-spacing: -0.02em;
  }

  .sc-para {
    font-size: 1rem;
    line-height: 1.85;
    color: #3b4a62;
    font-weight: 300;
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .sc-inner {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .sc-image img {
      height: 280px;
    }
  }