.hero {
  background-image: url('../images/hero-main.png');
  background-size: cover;
  background-position: center 20%;
  min-height: 55vh;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}

  .hero-title {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    text-shadow: none;
  }
  
  .hero h1 {
    font-size: 3.2em;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* ✅ THIS is the key change */
    justify-content: space-between;
    max-width: 90%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 2;
    padding: 2rem;
  }
  
  .review-carousel {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    color: #fff;
    text-align: center;
    align-self: flex-start;   /* Aligns it to the left */
    margin-top: auto;         /* Pushes it to the bottom */
    margin-left: 2rem;        /* Adds space from the left edge */
  }
  
  .review-card {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
    font-size: 1.1rem; /* slightly larger */
  }
  
  .review-card.active {
    display: block;
  }

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2em;
    }
  
    .review-card p {
      font-size: 1rem;
    }
  
    .review-card em {
      font-size: 0.95rem;
    }
  
    .review-carousel {
      padding: 1rem;
    }
  }
  
  .icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1rem;
    height: 190px; /* Match other icons visually */
  }
  
  .stars {
    color: #ffc107;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    margin-top: 1.25rem;  /* Previously 1.75rem — now more centered */
    margin-bottom: 0.75rem;
  }
  
  .review-card h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .review-card p {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .review-card em {
    display: block;
    margin-top: 0.75rem;
    font-style: italic;
    font-size: 1rem;
    color: #ddd;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .section {
    padding: 40px 20px 20px; /* 40px top, 20px sides, 20px bottom */
    max-width: 1200px;
    margin: auto;
  }
  
  .icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
  }
  
  .icons img {
    height: 80px;
    margin-bottom: 10px;
  }
  
/* Step Section Title */
.steps-title {
    text-align: center;
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1b2b36;
  }
  
  /* Step Tabs */
  .step-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
  }
  
  .step-tab {
    padding: 12px 25px;
    border: 2px solid #ccc;
    border-radius: 30px;
    background-color: #fff;
    color: #1b2b36;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  
  .step-tab:hover {
    background-color: #f0f0f0;
  }
  
  .step-tab.active {
    background-color: #27a844; /* Green background */
    color: white;
    border-color: #27a844;
  }

  .step-tab:hover {
    background-color: #eaf7ec; /* light green background on hover */
  }
  
  /* Step Container */
  .step-container {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
  }
  
  /* Step Content */
  .step {
    display: none;
    transition: opacity 0.4s ease;
  }
  
  .step.active {
    display: block;
  }
  
  .step h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1b2b36;
  }
  
  .step p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #444;
  }
  
  /* Optional Prev/Next Buttons if you bring them back later */
  .step-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .step-buttons button {
    padding: 10px 20px;
    background-color: #1b2b36;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .step-buttons button:hover {
    background-color: #31414e;
  }

  .help-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    color: #1b2b36;
    font-family: Arial, sans-serif;
  }
  
  .help-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .help-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    font-size: 1.2em;
    line-height: 1.8;
  }
  
  .help-message {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 25px;
  }
  
  .btn-outline-green {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #27a844;
    color: #27a844;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .btn-outline-green:hover {
    background-color: #27a844;
    color: #fff;
  }
  
  .btn-outline-green:hover {
    background-color: #27a844;
    color: #fff;
  }
  
  .coach-impact {
    text-align: center;
    padding: 1rem 1rem 3rem; /* reduce top padding */
    max-width: 800px;
    margin: 0 auto;
  }
  
  .coach-impact h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #1b2b36;
    margin-bottom: 20px;
  }
  
  .coach-impact p {
    font-size: 1.05rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .coach-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #118c4f;
    color: #118c4f;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .coach-button:hover {
    background-color: #118c4f;
    color: #fff;
  }