html{
        background-color: var(--primary-color);
}

body{
  background-color: var(--primary-color);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 1rem 2rem;
}
/* Overall page wrapper for the home page */
.online-coaching-home {     /* black background */
  color: #fff;            /* white text */
  min-height: 100vh;      /* full viewport height */
  box-sizing: border-box;
}

header h1 a{
    color:white;
    font-size:.8rem;
    text-decoration: none;
    text-transform: uppercase;
}
header h1{
        margin-top:0;
        line-height:1 !important;
}
/* 
  Hero section with 2 columns:
  Left = Big headline
  Right = Intro paragraph 
*/
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem; /* centers the grid and adds bottom margin */
  align-items: start;
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;  /* switch to a single column on smaller screens */
  }
  body{
  padding: 1vw;
}
}

.hero-section .headline {
  font-size: 4.6rem;
  margin: 0;        /* remove default margin */
  line-height: 1.2;
}

.headline  p{
    margin: 0;
}

.hero-section .intro {
  font-size: 1.12rem;
  line-height: 1.5;
  margin: 0;
}

/* Steps grid: stretch items to fill each row’s height */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  align-items: stretch;
}

/* Individual step box as a flex container */
.step-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  background: #20292F;
  padding: 2rem;
  border-radius: 4px;
  text-align: left;
}

/* Content container inside the step item */
.step-content {
  flex: 1; /* push the button to the bottom */
}

.step-item h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.step-item p {
  margin-bottom: 1.5rem;
  line-height: 1.4;
}


/* The neon-green button */
.step-item a.button {
  display: inline-block;
  background-color: #dfff00; /* neon-ish green */
  color: #000;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.step-item a.button:hover {
  background-color: #c5ec00; /* darker on hover */
}
        body {
            opacity: 0;
            animation: fadeIn .3s forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }