body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  *, *::before, *::after {
    box-sizing: border-box;
  }

  /* ========== HERO SECTION STYLES ========== */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: 750px;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    overflow: hidden;
  }

  .hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #6B093D 15.31%, #30001A 99.49%);
  }

  .hero-background,
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }

  .hero-content-wrapper {
    position: relative;
    z-index: 2;
  }

  .hero-cta-buttons {
    position: relative;
    z-index: 3;
  }

  .hero-cta-button {
    position: relative;
    z-index: 3;
    cursor: pointer;
  }

  .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url('/static/images/image_updated.jpg');
    background-size: cover;
    background-position: center;
    mix-blend-mode: overlay;
    opacity: 0.2;
    filter: blur(3px);
  }

  .hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 4rem);
    z-index: 10;
    box-sizing: border-box;
  }

  .hero-text-content {
    flex: 0 0 45%;
    max-width: 45%;
    animation: fadeInLeft 0.8s ease-out;
  }

  .hero-main-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    margin: 0 0 1rem 0;
  }

  .hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(1.125rem, 1.75vw, 1.75rem);
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin: 0 0 1.5rem 0;
  }

  .hero-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(0.875rem, 1.25vw, 1.25rem);
    line-height: 1.8;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin: 0 0 2rem 0;
  }

  .hero-cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.875rem 1.5rem;
    min-height: 3rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.25rem;
    letter-spacing: -0.01em;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .hero-cta-primary {
    background: #AD1457;
    box-shadow: 0px 0px 10px 2px rgba(236, 64, 122, 0.15);
    color: #FFFFFF;
  }

  .hero-cta-primary:hover {
    background: #C2185B;
    box-shadow: 0px 0px 15px 3px rgba(236, 64, 122, 0.25);
    transform: translateY(-2px);
  }

  .hero-cta-secondary {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 2px rgba(236, 64, 122, 0.15);
    color: #000000;
  }

  .hero-cta-secondary:hover {
    background: #F5F5F5;
    box-shadow: 0px 0px 15px 3px rgba(236, 64, 122, 0.25);
    transform: translateY(-2px);
  }

  .hero-cta-button:active {
    transform: translateY(0);
  }

  .hero-visual-content {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    height: 70vh;
    min-height: 500px;
    animation: fadeInRight 0.8s ease-out;
  }

  .laptop-container {
    position: absolute;
    width: 180%;
    height: 135%;
    right: -20%;
    top: 60%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .laptop-screen {
    width: 100%;
    height: 100%;
    background-image: url('/static/images/laptop3.png');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
  }

  /* Animations */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* ========== RESPONSIVE STYLES FOR HERO ========== */
  @media (max-width: 1600px) {
    .laptop-container {
      width: 170%;
      right: -15%;
    }
  }

  @media (max-width: 1400px) {
    .hero-content-wrapper {
      gap: 3rem;
    }

    .hero-text-content {
      flex: 0 0 48%;
      max-width: 48%;
    }

    .hero-visual-content {
      flex: 0 0 48%;
      max-width: 48%;
    }

    .laptop-container {
      width: 200%;
      right: -50%;
    }
  }

  @media (max-width: 1280px) {
    .laptop-container {
      width: 210%;
      right: -55%;
    }
  }

  @media (max-width: 1200px) {
    .hero-content-wrapper {
      gap: 2rem;
    }

    .hero-text-content {
      flex: 0 0 50%;
      max-width: 50%;
    }

    .hero-visual-content {
      flex: 0 0 45%;
      max-width: 45%;
    }

    .laptop-container {
      width: 220%;
      right: -60%;
    }
  }

  @media (max-width: 1024px) {
    .hero-content-wrapper {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 8rem 5% 2rem;
      gap: 3rem;
    }

    .hero-text-content {
      flex: 1;
      max-width: 100%;
    }

    .hero-description {
      max-width: 100%;
    }

    .hero-cta-buttons {
      justify-content: center;
    }

    .hero-visual-content {
      flex: 1;
      max-width: 90%;
      height: 50vh;
      min-height: 400px;
    }

    .laptop-container {
      width: 150%;
      height: 100%;
      left: 50%;
      right: auto;
      transform: translate(-50%, -50%);
    }

    .laptop-screen {
      background-position: center;
    }
  }

  @media (max-width: 768px) {
    .hero-section {
      min-height: auto;
      height: auto;
      padding-bottom: 3rem;
    }

    .hero-content-wrapper {
      padding: 6rem 5% 2rem;
      gap: 2rem;
    }

    .hero-cta-buttons {
      flex-direction: column;
      width: 100%;
      gap: 1rem;
    }

    .hero-cta-button {
      width: 100%;
      max-width: 400px;
    }

    .hero-visual-content {
      height: 40vh;
      min-height: 350px;
    }
  }

  @media (max-width: 480px) {
    .hero-content-wrapper {
      padding: 5rem 4% 2rem;
    }

    .hero-visual-content {
      height: 35vh;
      min-height: 300px;
      max-width: 100%;
    }

    .hero-cta-button {
      max-width: 100%;
    }
  }

  /* ========== AUTO SCROLL SECTION ========== */
  .auto-scroll-section {
    width: 100%;
    background: #FFFFFF;
    padding: clamp(1%, 2vw, 2%);
    overflow: hidden;
    margin: clamp(3%, 5vw, 5%) 0;
  }

  .auto-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #FFFFFF;
  }

  .auto-scroll-container::before,
  .auto-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 12%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
  }

  .auto-scroll-container::before {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, transparent 100%);
  }

  .auto-scroll-container::after {
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, transparent 100%);
  }

  .scroll-track {
    display: flex;
    align-items: center;
    gap: 5%;
    animation: scroll 40s linear infinite;
    width: fit-content;
    will-change: transform;
  }

  .scroll-track:hover {
    animation-play-state: paused;
  }

  .logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(3rem, 5vw, 5rem);
    min-width: clamp(6rem, 11vw, 11.25rem);
    padding: 0 1.25rem;
  }

  .logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
  }

  .logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% / 3));
    }
  }

  /* ========== SUCCESS RATIO SECTION ========== */
  .success-ratio-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 380px;
    height: auto;
    margin: clamp(40px, 5vw, 80px) auto;
    padding: clamp(30px, 4vw, 60px) clamp(20px, 4vw, 64px);
    overflow: hidden;
  }

  .success-ratio-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .background-text {
    position: absolute;
    width: 100%;
    max-width: 1173px;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: clamp(120px, 25vw, 480px);
    line-height: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #C53D76 0%, #FCE4EC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    z-index: 1;
  }

  .success-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
  }

  .success-text-top,
  .success-text-middle,
  .success-text-bottom {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 2.2vw, 32px);
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #212529;
    text-align: center;
    margin-bottom: clamp(10px, 1.5vw, 20px);
  }

  .success-highlight {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3.5vw, 56px);
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #AD1457;
    text-align: center;
    margin: 0 0 clamp(10px, 1.5vw, 20px) 0;
  }

  /* ========== ALL ABOUT BESSIE SECTION - FIXED ========== */
  .all-about-bessie-section {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: 0 auto;
    padding: clamp(40px, 4vw, 60px) clamp(20px, 3vw, 40px);
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
  }

  .all-about-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
  }

  .all-about-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: center;
    color: #6C757D;
    margin: 0 0 clamp(15px, 2vw, 20px) 0;
    padding: 0;
  }

  .title-highlight {
    background: linear-gradient(90deg, #C53D76 0%, #4A052A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .all-about-subtitle {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
    color: #212529;
    margin: 0 auto clamp(30px, 4vw, 57px) auto;
    padding: 0 20px;
    max-width: 920px;
  }

  .bessie-cards-wrapper {
    display: flex;
    flex-direction: row;
    gap: clamp(15px, 2vw, 25px);
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0;
  }

  .bessie-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    padding: 12px;
    width: calc(50% - 12.5px);
    max-width: 646px;
    min-width: 300px;
    min-height: 374px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    flex-shrink: 0;
  }

  .bessie-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }

  .bessie-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(16px, 2vw, 24px) clamp(12px, 1.5vw, 16px) clamp(12px, 1.5vw, 16px) clamp(12px, 1.5vw, 16px);
    gap: clamp(15px, 2vw, 20px);
    width: 100%;
    background: #FFFFFF;
    border-radius: 16px;
    box-sizing: border-box;
    border: 1.5px solid #D1D5DB;
  }

  .bessie-card-first {
    border: 1.5px solid #6B093D;
  }

  .bessie-card-second {
    border: 1.5px solid #30001A;
  }

  .bessie-card-title {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.4;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #C53D76 0%, #4A052A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    padding: 0;
  }

  .bessie-card-description {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 1.8;
    text-align: justify;
    color: #6C757D;
    margin: 0;
    padding: 0;
    flex: 1;
  }

  .bessie-card-footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(12px, 1.5vw, 16px);
    gap: 10px;
    width: 100%;
    background: #F8F9FA;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .bessie-footer-text {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.5;
    text-align: justify;
    color: #2D3748;
    margin: 0;
    padding: 0;
  }

  /* Responsive for All About Bessie */
  @media (max-width: 1200px) {
    .bessie-card {
      width: calc(50% - 10px);
    }
  }

  @media (max-width: 1024px) {
    .bessie-cards-wrapper {
      flex-direction: column;
      align-items: center;
    }

    .bessie-card {
      width: 100%;
      max-width: 646px;
    }
  }

  @media (max-width: 768px) {
    .bessie-card {
      min-width: 280px;
    }
    
    .bessie-card-description {
      text-align: left;
    }
    
    .bessie-footer-text {
      text-align: left;
    }
  }

  /* ========== WHAT BESSIE MEASURES SECTION ========== */
  .what-bessie-measures-section {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: 0 auto;
    padding: clamp(40px, 4vw, 60px) clamp(20px, 3vw, 40px);
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
  }

  .what-bessie-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
  }

  .what-bessie-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: center;
    color: #6C757D;
    margin: 0 0 clamp(15px, 2vw, 20px) 0;
    padding: 0;
  }

  .measures-highlight {
    background: linear-gradient(90deg, #C53D76 0%, #4A052A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .what-bessie-description {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
    color: #212529;
    margin: 0 auto clamp(40px, 5vw, 80px) auto;
    padding: 0 20px;
    max-width: 920px;
  }

  .measurement-layout {
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
    position: relative;
  }

  .measurement-top-row,
  .measurement-bottom-row {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 2vw, 25px);
    margin-bottom: clamp(30px, 4vw, 60px);
    flex-wrap: wrap;
    margin-top: clamp(30px, 4vw, 60px);
  }

  .measurement-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: calc(33.333% - 17px);
    max-width: 386px;
    min-width: 250px;
    height: auto;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid #6B093D;
    border-radius: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
    flex-shrink: 0;
  }

  .measurement-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #6B1139 0%, #A91B56 100%);
    box-shadow: 0px 8px 24px rgba(107, 17, 57, 0.25);
    border-color: transparent;
  }

  .measurement-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .measurement-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px, 2.5vw, 32px);
    gap: clamp(20px, 2.5vw, 32px);
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .measurement-card:hover .measurement-card-content {
    background: transparent;
  }

  .measurement-icon {
    width: clamp(24px, 2.5vw, 32px);
    height: clamp(24px, 2.5vw, 32px);
    position: relative;
    flex-shrink: 0;
  }

  .measurement-icon img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
  }

  .measurement-icon .icon-normal {
    opacity: 1;
  }

  .measurement-icon .icon-hover {
    opacity: 0;
  }

  .measurement-card:hover .measurement-icon .icon-normal {
    opacity: 0;
  }

  .measurement-card:hover .measurement-icon .icon-hover {
    opacity: 1;
  }

  .measurement-text {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    letter-spacing: -0.01em;
    text-align: center;
    color: #343A40;
    margin: 0;
    padding: 0;
  }

  .measurement-card:hover .measurement-text {
    color: #FFFFFF;
  }

  .connection-line-wrapper {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .connection-line {
    position: relative;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #E5E7EB 0%, #D1D5DB 50%, #E5E7EB 100%);
    display: flex;
    align-items: center;
  }

  .connection-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
  }

  .point-icon {
    width: clamp(20px, 2vw, 24px);
    height: clamp(20px, 2vw, 24px);
    flex-shrink: 0;
  }

  .point-icon img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .point-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 20px);
    line-height: 1.6;
    letter-spacing: -0.01em;
    text-align: center;
    color: #2D3748;
    white-space: nowrap;
    margin-bottom: 8px;
  }

  .point-label.bottom {
    order: 2;
    margin-bottom: 0;
    margin-top: 8px;
  }

  @media (max-width: 1200px) {
    .measurement-card {
      width: calc(33.333% - 15px);
      min-width: 230px;
    }
  }

  @media (max-width: 1024px) {
    .measurement-top-row,
    .measurement-bottom-row {
      flex-direction: column;
      align-items: center;
      gap: clamp(20px, 3vw, 30px);
    }

    .measurement-card {
      width: 100%;
      max-width: 500px;
    }

    .connection-line-wrapper {
      display: none;
    }
  }

  /* ========== CHANGING WORLD SECTION ========== */
  .changing-world-section {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: 0 auto;
    padding: clamp(40px, 4vw, 60px) clamp(20px, 3vw, 40px);
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
  }

  .changing-world-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
  }

  .changing-world-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: center;
    color: #6C757D;
    margin: 0 0 clamp(15px, 2vw, 20px) 0;
    padding: 0;
  }

  .world-highlight {
    background: linear-gradient(90deg, #C53D76 0%, #4A052A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .changing-world-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(30px, 3vw, 40px);
    padding: 0 20px;
  }

  .description-line {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
    color: #212529;
    margin: 5px 0;
    padding: 0;
  }

  .gradient-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 100%;
    max-width: 1312px;
    margin: 0 auto clamp(30px, 3vw, 40px) auto;
    border-radius: 16px;
    box-sizing: border-box;
    min-height: 120px;
  }

  .gradient-banner.dark-gradient {
    background: linear-gradient(298.77deg, #C53D76 0%, #30001A 100%);
  }

  .gradient-banner.light-gradient {
    background: linear-gradient(298.77deg, #F8F9FA 0%, #DEE2E6 100%);
  }

  .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 2.5vw, 24px) clamp(20px, 2.5vw, 32px);
    gap: clamp(12px, 1.5vw, 16px);
    width: 100%;
    max-width: 1296px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .banner-subtitle {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    letter-spacing: -0.01em;
    text-align: center;
    color: #2D3748;
    margin: 0;
    padding: 0;
  }

  .banner-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .banner-title.dark-text {
    color: #2D3748;
  }

  .banner-text {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    letter-spacing: -0.01em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .banner-text.dark-text {
    color: #2D3748;
  }

  .helps-organisations-section {
    margin: clamp(30px, 4vw, 50px) 0;
  }

  .helps-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: center;
    color: #212529;
    margin: 0 0 clamp(30px, 3vw, 40px) 0;
    padding: 0;
  }

  .helps-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 50px);
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .helps-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: calc(33.333% - 34px);
    max-width: 400px;
    min-width: 250px;
    height: auto;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid #6B093D;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .helps-card:hover {
    background: linear-gradient(135deg, #6B1139 0%, #A91B56 100%);
    border-color: #6B1139;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 17, 57, 0.2);
  }

  .helps-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .helps-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px, 2.5vw, 32px);
    gap: clamp(20px, 2.5vw, 32px);
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .helps-card:hover .helps-card-content {
    background: transparent;
  }

  .helps-card-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: center;
    color: #212529;
    margin: 0;
    padding: 0;
  }

  .helps-card:hover .helps-card-title {
    color: #FFFFFF;
  }

  .helps-card-text {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    letter-spacing: -0.01em;
    text-align: center;
    color: #343A40;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
  }

  .helps-card:hover .helps-card-text {
    color: #FFFFFF;
  }

  @media (max-width: 1200px) {
    .helps-card {
      width: calc(33.333% - 20px);
    }
  }

  @media (max-width: 1024px) {
    .helps-cards-wrapper {
      flex-direction: column;
      align-items: center;
    }

    .helps-card {
      width: 100%;
      max-width: 500px;
    }
  }

  /* ========== WELLBEING BASELINE SECTION ========== */
  .wellbeing-baseline-section {
    width: 100%;
    min-height: 350px;
    height: auto;
    margin: 0 auto;
    padding: clamp(40px, 4vw, 60px) 0;
    background: linear-gradient(298.77deg, #C53D76 0%, #30001A 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .wellbeing-baseline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 407"><rect fill="rgba(0,0,0,0.1)" width="1440" height="407"/></svg>');
    opacity: 0.3;
    mix-blend-mode: multiply;
    pointer-events: none;
  }

  .wellbeing-baseline-container {
    width: 100%;
    max-width: 1312px;
    padding: 0 clamp(20px, 4vw, 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .wellbeing-baseline-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 clamp(15px, 2vw, 20px) 0;
    padding: 0;
  }

  .wellbeing-baseline-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(20px, 2vw, 24px);
  }

  .baseline-text-line {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
    color: #FFFFFF;
    margin: 3px 0;
    padding: 0;
  }

  .baseline-cta-button {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(12px, 1.5vw, 16px) clamp(32px, 3vw, 40px);
    width: auto;
    max-width: 300px;
    min-height: clamp(44px, 4vw, 56px);
    background: #AD1457;
    box-shadow: 0px 0px 10px 2px rgba(236, 64, 122, 0.15);
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: clamp(20px, 2vw, 24px);
    box-sizing: border-box;
  }

  .baseline-cta-button:hover {
    background: #C2185B;
    box-shadow: 0px 0px 20px 4px rgba(236, 64, 122, 0.3);
    transform: translateY(-2px);
  }

  .baseline-cta-button:active {
    transform: translateY(0);
    box-shadow: 0px 0px 10px 2px rgba(236, 64, 122, 0.15);
  }

  .baseline-subtext {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    opacity: 0.9;
  }

  /* ========== BESSIE USEFUL SECTION ========== */
  .bessie-useful-section {
    width: 100%;
    max-width: 100%;
    margin: clamp(60px, 6vw, 100px) auto;
    padding: 0 clamp(20px, 3vw, 40px);
    overflow: hidden;
  }

  .bessie-useful-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .bessie-useful-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.3;
    text-align: center;
    color: #6B7280;
    margin-bottom: clamp(35px, 4vw, 50px);
    padding: 0 20px;
  }

  .bessie-tabs {
    display: flex;
    gap: clamp(14px, 2vw, 24px);
    margin-bottom: clamp(45px, 4vw, 60px);
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .bessie-tab {
    padding: clamp(12px, 1.5vw, 16px) clamp(24px, 3vw, 36px);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.3vw, 18px);
    background: #F3F4F6;
    border: 2px solid transparent;
    border-radius: 8px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: clamp(200px, 20vw, 280px);
    text-align: center;
    flex: 0 1 auto;
  }

  .bessie-tab:hover {
    background: #E5E7EB;
    color: #374151;
  }

  .bessie-tab.active {
    background: #1F2937;
    color: #FFFFFF;
    border-color: #1F2937;
  }

  .bessie-content-wrapper {
    width: 100%;
    max-width: 1100px;
    position: relative;
    min-height: 250px;
  }

  .bessie-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
  }

  .bessie-content.active {
    display: block;
  }

  .bessie-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.7;
    text-align: center;
    color: #1F2937;
    margin-bottom: clamp(40px, 4vw, 50px);
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }

  .bessie-buttons {
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .bessie-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(48px, 4vw, 56px);
    height: clamp(48px, 4vw, 56px);
    background: #FFFFFF;
    border: 2px solid #EC407A;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #EC407A;
    flex-shrink: 0;
  }

  .bessie-back-btn:hover {
    background: #EC407A;
    color: #FFFFFF;
    transform: translateX(-3px);
  }

  .bessie-continue-btn {
    padding: clamp(14px, 1.5vw, 16px) clamp(36px, 4vw, 48px);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.5vw, 20px);
    background: linear-gradient(90deg, #C2185B 0%, #AD1457 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .bessie-continue-btn:hover {
    background: linear-gradient(90deg, #D81B60 0%, #C2185B 100%);
    box-shadow: 0 0 25px rgba(236, 64, 122, 0.4);
    transform: translateY(-3px);
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .bessie-tabs {
      flex-direction: column;
      align-items: stretch;
    }

    .bessie-tab {
      width: 100%;
      min-width: auto;
    }
  }

  /* ========== ORGANISATION WELLBEING INDEX SECTION ========== */
  .organisation-wellbeing-section {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin: 0 auto;
    padding: clamp(40px, 4vw, 60px) clamp(20px, 3vw, 40px);
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
  }

  .wellbeing-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
  }

  .wellbeing-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: center;
    color: #6C757D;
    margin: 0 0 clamp(15px, 2vw, 20px) 0;
    padding: 0;
  }

  .wellbeing-highlight {
    background: linear-gradient(90deg, #C53D76 0%, #4A052A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .wellbeing-description {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.8vw, 24px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
    color: #212529;
    margin: 0 auto clamp(40px, 5vw, 80px) auto;
    padding: 0 20px;
    max-width: 920px;
  }

  .assessment-layout {
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
    position: relative;
  }

  .assessment-top-row,
  .assessment-bottom-row {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 2vw, 25px);
    margin-bottom: clamp(20px, 2vw, 30px);
    flex-wrap: wrap;
  }

  .assessment-card {
    box-sizing: border-box;
    width: calc(25% - 19px);
    max-width: 304px;
    min-width: 200px;
    height: auto;
    min-height: 142px;
    background: rgba(248, 187, 208, 1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
    flex-shrink: 0;
  }

  .assessment-card:hover {
    background: linear-gradient(135deg, #6B1139 0%, #A91B56 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 17, 57, 0.2);
  }

  .assessment-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .assessment-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .assessment-text {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    letter-spacing: -0.01em;
    text-align: center;
    color: #1F2937;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
  }

  .assessment-card:hover .assessment-text {
    color: #FFFFFF;
  }

  .wellbeing-footer {
    width: 100%;
    text-align: center;
    margin-top: clamp(30px, 3vw, 40px);
  }

  .wellbeing-footer-text {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-align: center;
    color: #212529;
    margin: 0 auto clamp(30px, 3vw, 40px) auto;
    padding: 0 20px;
    max-width: 920px;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 1.5vw, 16px) clamp(36px, 4vw, 48px);
    background: linear-gradient(90deg, #C53D76 0%, #A91B56 100%);
    border: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.6;
    color: #FFFFFF;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(197, 61, 118, 0.3);
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 61, 118, 0.4);
    background: linear-gradient(90deg, #A91B56 0%, #8A1545 100%);
  }

  .cta-button:active {
    transform: translateY(0);
  }

  @media (max-width: 1200px) {
    .assessment-card {
      width: calc(33.333% - 17px);
    }
  }

  @media (max-width: 900px) {
    .assessment-card {
      width: calc(50% - 13px);
    }
  }

  @media (max-width: 600px) {
    .assessment-top-row,
    .assessment-bottom-row {
      flex-direction: column;
      align-items: center;
    }

    .assessment-card {
      width: 100%;
      max-width: 500px;
    }
  }

  /* ========== CONTACT SECTION ========== */
  .contact-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 40px);
    background: #FFFFFF;
    overflow: hidden;
  }

  .contact-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4A0E2A 0%, #6B1139 50%, #8B1548 100%);
    border-radius: 24px;
    padding: clamp(30px, 5vw, 60px);
    gap: clamp(30px, 5vw, 60px);
    box-shadow: 0 10px 40px rgba(74, 14, 42, 0.3);
    position: relative;
    overflow: hidden;
  }

  .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .contact-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .contact-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  }

  .contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
    min-width: 0;
  }

  .contact-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 8px;
  }

  .contact-description {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.2vw, 14px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
  }

  .form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-input,
  .form-textarea {
    width: 100%;
    padding: clamp(12px, 1.2vw, 14px) clamp(16px, 1.5vw, 18px);
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(14px, 1.2vw, 15px);
    color: #FFFFFF;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
  }

  .form-input::placeholder,
  .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .form-input:focus,
  .form-textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  }

  .form-input.error,
  .form-textarea.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
  }

  .form-textarea {
    resize: vertical;
    min-height: 100px;
  }

  .error-message {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #ff6b6b;
    margin-top: -12px;
    margin-bottom: 4px;
    display: block;
    min-height: 16px;
  }

  .form-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .form-alert.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4CAF50;
  }

  .form-alert.error {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.5);
    color: #ff6b6b;
  }

  .form-submit {
    width: 100%;
    padding: clamp(12px, 1.2vw, 14px) clamp(20px, 2vw, 24px);
    background: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(15px, 1.2vw, 16px);
    color: #6B1139;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
  }

  .form-submit:hover:not(:disabled) {
    background: #F8F9FA;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .form-submit:active:not(:disabled) {
    transform: translateY(0);
  }

  .form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

  .btn-loader {
    display: inline-block;
  }

  @media (max-width: 1024px) {
    .contact-card {
      padding: clamp(40px, 4vw, 50px);
      gap: clamp(30px, 3vw, 40px);
    }
  }

  @media (max-width: 768px) {
    .contact-section {
      padding: 0 clamp(16px, 3vw, 24px);
      margin: clamp(40px, 5vw, 60px) auto;
    }

    .contact-card {
      flex-direction: column;
      padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
      gap: clamp(30px, 4vw, 40px);
    }

    .contact-image {
      order: -1;
    }

    .contact-image img {
      max-width: 280px;
    }

    .contact-title {
      text-align: center;
    }

    .contact-description {
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .contact-card {
      padding: clamp(20px, 4vw, 30px);
    }

    .contact-image img {
      max-width: 220px;
    }
  }