.tabs-hero {
    background-image: url("https://execor.vamtam.com/wp-content/uploads/2025/03/GettyImages-2162471545.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 10px;
    position: relative;
    overflow: hidden;
  }


  .tabs-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.025) 60px,
      rgba(255,255,255,0.025) 61px
    );
    pointer-events: none;
  }

  .tabs-nav {
    background: #ffffff;
    border-bottom: 1px solid #d8e8de;
    padding: 0 60px;
    display: flex;
    gap: 0;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .tab-btn {
    color: #8aaa97;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 20px 28px 18px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  .tab-btn:hover { color: #0d1f1a; }

  .tab-btn.active {
    color: #0d1f1a;
    border-bottom-color: #0d1f1a;
    font-weight: 600;
  }

  .tabs-body {
    background: #ffffff;
  }

  .tab-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
  }

  .tab-panel.active {
    display: grid;
    animation: fadeSlideIn 0.4s ease both;
  }

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

  .tab-left {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .tab-intro {
    color: #8aaa97;
    max-width: 420px;
  }

  .tab-items {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .tab-item {
    border-left: 2px solid #d8e8de;
    padding: 10px 0 10px 10px;
    margin-top: 20px;
    transition: border-color 0.2s;
    cursor: default;
  }

  .tab-item:hover { border-left-color: #74c69d; }

  .tab-right {
    position: relative;
    background: #163328;
    overflow: hidden;
    min-height: 480px;
  }

  .tab-right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
    transition: opacity 0.3s;
  }

  .tab-right:hover img { opacity: 0.85; }

  .tab-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #74c69d;
    color: #0d1f1a;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, gap 0.2s;
  }

  .tab-cta:hover {
    background: #b7e4c7;
    gap: 14px;
  }

  .tab-cta svg {
    width: 16px;
    height: 16px;
  }

  @media (max-width: 768px) {
    .tabs-nav { padding: 0px 0px; overflow-x: auto; }
    .tab-btn { padding: 10px;}
    .tab-panel { grid-template-columns: 1fr; }
    .tab-left { padding: 20px 10px; }
    .tab-right { min-height: 200px; }
  }

 @media (min-width: 768px) {
    .tabs-hero {
      width: 100%;
        max-width: 1560px;
        padding: 60px 60px 60px 60px;
        margin: 0 auto;
        text-align: center;
    }

    .tabs-nav {
      width: 100%;
        max-width: 1560px;
        margin: 0 auto
    }

    .tabs-body {
      width: 100%;
        max-width: 1560px;
        margin: 0 auto
    }

    .tabs-nav {
      display: flex;
      justify-content: center;
    }

    .tabs-nav div {
      display: flex;
      justify-content: space-between;
      padding: 0px;
      max-width: 500px;
    }

    .tab-left {
      padding: 60px 0px
    }

    .tab-panel.active {
      padding: 60px 30px 30px 30px;
    }

    .tab-panel, .tabs-nav {
      background: #f4f7fb;
    }

    .tab-right {
      border-radius: 8px;
    }

    .tabs-hero {
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }

    .tab-panel {
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      margin-bottom: 200px;
    }
 }