/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== STORY SECTION ========== */
.story-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  
}

.story-heading {
  text-align: center;
  margin-bottom: 40px;
}

.story-heading .highlight {
  color: #f25c3c;
  font-size: 24px;
  margin: 0;
}

.story-heading .main-title {
  color: #1e2a55;
  font-size: 36px;
  margin: 5px 0 0;
}

.story-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.story-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.story-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.story-text {
  flex: 1 1 45%;
}

.story-text .sub-heading {
  color: #1e2a55;
  font-size: 22px;
  margin-bottom: 10px;
}

.story-text p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.7;
}

/* --------- Story Responsive --------- */
@media (max-width: 768px) {
  .story-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .story-image img {
    max-width: 90%;
    height: auto;
  }

  .story-text {
    margin-top: 0;
    flex: 1 1 100%;
  }

  .story-heading {
    margin-bottom: 20px;
  }

  .story-heading .main-title {
    font-size: 28px;
  }

  .story-heading .highlight {
    font-size: 20px;
  }

  .story-text .sub-heading {
    font-size: 20px;
  }

  .story-text p {
    font-size: 15px;
  }

  .story-section {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .story-heading .main-title {
    font-size: 24px;
  }

  .story-heading .highlight {
    font-size: 18px;
  }

  .story-text .sub-heading {
    font-size: 18px;
  }

  .story-text p {
    font-size: 14px;
  }
}


/* ========== JOIN CTA SECTION ========== */
.join-cta-section {
  width: 100%;
  background-color: #FFEDE7;
  overflow: hidden;
  position: relative;
}

.join-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.join-cta-content {
  flex: 0 0 45%;
  padding-right: 20px;
}

.join-cta-heading {
  font-family: 'Arial', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2D2D2D;
  line-height: 1.3;
  margin-bottom: 15px;
}

.join-cta-subtext {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 25px;
}

.join-cta-button {
  display: inline-block;
  background-color: #E86343;
  color: white;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.join-cta-button:hover {
  background-color: #D15538;
}

.join-cta-image-container {
  flex: 0 0 55%;
  display: flex;
  justify-content: flex-end;
}

.join-cta-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* --------- Join CTA Responsive --------- */
@media (max-width: 992px) {
  .join-cta-container {
    padding: 40px;
  }

  .join-cta-heading {
    font-size: 28px;
  }

  .join-cta-subtext {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .join-cta-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }

  .join-cta-content {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .join-cta-image-container {
    flex: 0 0 100%;
    justify-content: center;
  }

  .join-cta-image {
    max-width: 95%;
  }

  .join-cta-button {
    font-size: 15px;
    padding: 10px 24px;
  }
}

@media (max-width: 576px) {
  .join-cta-container {
    padding: 24px 16px;
  }

  .join-cta-heading {
    font-size: 24px;
  }

  .join-cta-subtext {
    font-size: 14px;
  }

  .join-cta-button {
    font-size: 14px;
    padding: 10px 22px;
  }
}
