  .service-feature-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 480px;
    padding: 4rem 8%;
    position: relative;
    gap: 5rem;
    background-color: var(--bg-dark);
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    width: 100%;
  }

  .service-feature-banner .content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
  }

  .service-feature-banner .content h2 {
    font-family: var(--font-main);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: -0.02em;
  }

  .service-feature-banner .content h2 strong {
    font-weight: 800;
    color: var(--white);
  }

  .service-feature-banner .subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
  }

  .service-feature-banner .button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .service-feature-banner .btn {
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    will-change: transform;
    transition: background-color 0.3s cubic-bezier(0.4,0,0.2,1),
                transform 0.3s cubic-bezier(0.4,0,0.2,1),
                border-color 0.3s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    text-transform: none;
  }

  .service-feature-banner .btn-primary {
    background-color: var(--btn-dark, #333333);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .service-feature-banner .btn-primary:hover {
    background-color: var(--btn-dark-hover, #444444);
    transform: translateY(-2px);
  }

  .service-feature-banner .btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
  }

  .service-feature-banner .btn-outline:hover {
    border-color: var(--white);
    background-color: rgba(255,255,255,0.05);
    transform: translateY(-2px);
  }

  .service-feature-banner .image-container {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    min-height: 340px;
  }

   .placeholder-image {
    width: 100%;
    height: 340px;
    background: var(--bg-dark);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
  }

  .placeholder-image::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0,71,255,0.12);
    top: 10px;
    right: -20px;
  }

  .placeholder-image::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(0,71,255,0.07);
    bottom: 20px;
    left: 20px;
  }

  .placeholder-label {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 1;
    font-family: var(--font-body);
  }

  @media (max-width: 1024px) {
    .service-feature-banner {
      min-height: 540px;
      flex-direction: column;
      text-align: center;
      padding: 4rem 5%;
      gap: 2rem;
    }
    .service-feature-banner .content { max-width: 100%; }
    .service-feature-banner .subtitle { margin: 1.5rem auto 2.5rem; }
    .service-feature-banner .button-group { justify-content: center; }
    .service-feature-banner .image-container { width: 100%; margin-top: 2rem; }
  }

  @media (max-width: 480px) {
    .service-feature-banner .content h2 { font-size: clamp(28px, 8vw, 36px); }
    .service-feature-banner .button-group { flex-direction: column; }
    .service-feature-banner .btn { justify-content: center; }
  }