* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* --- Styles for the Top Banner --- */
.topBannerContainer {
    position: relative;
    line-height: 1.1;
    color: #fff;
    margin-top: 5% !important;
}
.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
}
.banner-panel {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    padding: 30px;
}
/* background images for each panel */
.banner-panel.connect {
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop');
}
.banner-panel.lead {
    background-image: url('https://images.unsplash.com/photo-1556157382-97eda2d62296?auto=format&fit=crop');
}
.banner-panel.succeed {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop');
}
/* Color overlay for each panel */
.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.connect .panel-overlay {
    background-color: #5d3f9e;
}
.lead .panel-overlay {
    background-color: #2b3a7d;
}
.succeed .panel-overlay {
    background-color: #1a1a1a;
}
.panel-text {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: bold;
}
/* Styling for the central hashtag */
.banner-hashtag {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background-color: #df7900;
    color: #fff;
    padding: 15px 30px;
    font-size: 2rem;
    font-weight: bold;
}
{#.banner-hashtag {
    position: absolute;
    bottom: 20px;
    left: 0; 
    right: 0;
    width: 100%;
    z-index: 3;
    background-color: #df7900;
    color: #fff;
    padding: 15px 30px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}#}
/* --- Mobile Responsiveness --- */
@media (max-width: 767.98px) {
    .banner-panel {
        height: 180px;
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .panel-text {
        font-size: 1.5rem;
    }
   .banner-hashtag {
        font-size: 1.5rem;
        padding: 10px 20px;
        bottom: 10px;
    }
}

/* --- Styles for Stats Bar --- */
.stats-bar {
    background-color: #df7900;
    padding: 30px 20px;
    color: #fff;
}
.stats-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}
.stat-label {
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
}
.what-we-offer-container {
  background-color: #fff;
}
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
}
.intro-text {
  margin-bottom: 10px;
  padding: 5px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text p {
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}
.services-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 24px;
}
.cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.card {
  padding: 24px;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
}
.cards-container > .card {
  height: 100%;
}
.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
.free-membership {
  background-color: #5f5147 !important;
  color: #fff;
}
.paid-partnership {
  background-color: #978b81 !important;
  color: #fff;
}
.card-ul {
  margin-bottom: 24px;
}
.divider {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 16px;
  margin-bottom: 24px;
}
.divider p {
  font-size: 12px;
}
.button-container {
  text-align: center;
  margin-top: auto;
  text-align: center;
}
.cta-button {
  background-color: #e67800;
  color: white;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 12px;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  line-height: 1.3;
}
.cta-button:hover{
  background-color: #fff !important;
  color: #e67800 !important;
}
.card-ul a {
  color: #fff !important;
  text-decoration: underline;
}
.bottom-text {
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}
/* Tablet and desktop styles */
@media (min-width: 768px) {
  .main-content {
    padding: 48px 32px;
  }
  .intro-text {
    padding: 48px 32px;
  }
  .intro-text p {
    font-size: 18px;
  }
  .services-section {
    margin-bottom: 48px;
    margin-top: 20px;
  }
  .services-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .cards-container {
    gap: 32px;
  }
  .card {
    padding: 32px;
    border-radius: 0 !important;
  }
  .card-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .card-ul {
    margin-bottom: 32px;
  }
  .divider {
    padding-top: 24px;
    margin-bottom: 32px;
  }
  .divider p {
    font-size: 14px;
  }
  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
    width: auto;
  }
  .bottom-text {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .cards-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 640px) {
  .cta-button {
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .stats-bar .container {
    justify-content: space-between; 
    padding-left: 15px;
    padding-right: 15px;
  }
  .stats-bar .stat-number {
    font-size: 1.75rem;
  }
  .stats-bar .stat-label {
    font-size: 0.8rem;
  }

}