

  /* Base Banner Structure */
  .main-banner {
    position: relative;
    min-height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
  }

  /* Overlay Layer */
  .main-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 20, 109, 0.3);
    z-index: 1;
  }

  /* Content Container */
  .banner-content-wrapper {
    position: relative;
    /* max-width: 620px; */
    width: 100%;
    z-index: 2;
  }

  /* Content Styling */
  .main-banner .banner-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Typography */
  .banner-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 3rem);
    line-height: normal;
    font-weight: 800;
  }

  .banner-content p {
    font-size: clamp(1rem, 4vw, 1.18rem);
    line-height: 1.65;
    max-width: 480px;
  }

  /* Button Styles */
  .banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    font-size: 1.08rem;
    font-weight: 600;
    border-radius: 0.625rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    width: fit-content;
    cursor: pointer;
    border: none;
  }

  .banner-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }

  .banner-btn:active {
    transform: translateY(-2px);
  }

  /* Highlighted Text */
  .banner-content .highlight {
    display: inline-block;
  }

  /* Text Alignment Utilities */
  .banner-content.text-left {
    text-align: left;
  }

  .banner-content.text-center {
    text-align: center;
    align-items: center;
  }

  .banner-content.text-right {
    text-align: right;
    align-items: flex-end;
  }

  /* Intertwined Layout Effect */
  .main-banner.intertwined {
    margin-bottom: -90px;
  }

  @media (max-width: 768px) {
    .main-banner {
      min-height: 75vh;
    }

    .banner-content h1 {
      font-size: clamp(2rem, 7vw, 2rem);
      line-height: normal;
    }

    .banner-btn {
      padding: 0.75rem 2.5rem;
      font-size: 0.95rem;
    }

    .banner-content-wrapper {
      padding: 0 1rem;
    }
  }
  @media (max-width: 480px) {
    .banner-content h1 {
      font-size: clamp(1.75rem, 6vw, 2rem);
    }

    .banner-content p {
      font-size: 0.95rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .banner-btn {
      transition: none;
    }

    .banner-btn:hover {
      transform: none;
    }
  }

  @media (prefers-contrast: high) {
    .banner-btn {
      border: 2px solid currentColor;
    }

    .banner-overlay {
      background: rgba(0, 0, 0, 0.6);
    }
  }
