.what-youll-find {
  padding: 60px 40px;
}

.sections-overview {
    padding: 40px 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}
.section-card {
  max-width: 300px;
  border: 1px solid #B08D57;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}
.section-card:before {
    content: "";
    width: 100%;
    height: 100%;
    top: -0.5em;
    right: -0.5em;
    border: 1px solid #B08D57;
    border-radius: 8px;
    position: absolute;
}
.why-onstride-section {
    padding: 20px 40px;
}
.why-onstride-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}
.why-card {
  max-width: 300px;
  text-align: center;
  background-color: #335D10;
  color: #FFFAEE; 
  padding: 0px 40px;
  border-radius: 8px;
}
.inspirational-note {
  background-color: #E1066D;
  color: white;
  text-align: center;
  font-style: italic;
  padding: 60px;
}
.emphasis {
  color: black;
  font-weight: 600;
}
.who-this-is-for {
    padding: 40px 40px;
    background-color: white;
    color: black;
}
.who-this-is-for-wrapper {
  display: flex;
}
.who-this-is-for-section {
  width: 50%;
  padding: 20px;
}
.who-this-is-for-section ul li {
  font-size: 24px;
  line-height: 1.5em;
  margin-bottom: 10px;
}
.who-this-is-for-section ul li::marker {
  color: #E1066D; /* Changes the bullet color to red */
  font-size: 1.2em; /* Optional: adjust size */
}
.section-divider {
  color: #E1066D;
  display: block;
  height: 1px;
  border: 0;
  border-top: 0.5px solid #E1066D;
  width: 100%;
}

.flip-card {
  background-color: transparent;
  width: 350px;
  height: 350px;
  perspective: 1000px; /* Essential for 3D effect */
  cursor: pointer;
   border-radius: 8px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
   border-radius: 8px;
}

/* The class toggled by JS */
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}


.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Hides the back side */
   border-radius: 8px;
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}

.flip-card-back {
  background-color: #E1066D;
  color:white; 
  transform: rotateY(180deg);
}
.subscribe-section {
    background-color: #E1066D;
    color: white;
    padding: 40px;
    margin: 0px;
    display: flex;
}
.subscribe-section p {
    max-width: 300px;
}
.subscribe-form {
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.subscribe-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}
.subscribe-form input[type="text"] {
    padding: 10px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}
.subscribe-form input[type="submit"] {
    background-color: black;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}
.cta-inspirational {
  background-color: black;
  color: white;
  padding: 80px 40px;
  display: flex;
}

@media (max-width: 768px) {
  .sections-overview, .why-onstride-cards {
    flex-direction: column;
    align-items: center;
    padding: 40px 10px;
  }
  .subscribe-section {
    flex-direction: column;
    text-align: center;
  }
  .cta-inspirational {
    flex-direction: column;
    padding: 40px 10px;
    text-align: center;
  }
  .who-this-is-for-section {
    width: 100%;
  }
  .who-this-is-for-wrapper {
    flex-direction: column;
  }
  .what-youll-find {
    padding: 20px 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .sections-overview, .why-onstride-cards {
    justify-content: center;
  }
  .flip-card {
    width: 600px;
    height: 600px;
  }
  .flip-card-back h3 {
    font-size: 12px;
  }
  .flip-card-back p {
    font-size: 12px;
  }
}
.card-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}