/* =======================
   GLOBAL STYLES
======================= */
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.section-subtitle {
  font-size: 1.4rem;
  text-align: center;
  font-weight: 600;
  color: #7a1c1c;
  margin-bottom: 15px;
}

.section-paragraph,
.section-intro {
  text-align: center;
  color: #555;
  max-width: 850px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background-color: #7a1c1c;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #9e2b2b;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #7a1c1c;
  border: 2px solid #7a1c1c;
}

.btn-outline:hover {
  background: #7a1c1c;
  color: #fff;
}



/* =======================
   SOLUTIONS SECTION
======================= */
.solutions-section {
  background-color: #fafafa;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.solution-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.solution-card .icon {
  font-size: 2.5rem;
  color: #7a1c1c;
  margin-bottom: 15px;
}

.solution-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.solution-card p {
  font-size: 1rem;
  color: #555;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* =======================
   MENTORSHIP SECTION
======================= */
.mentorship-section {
  background-color: #fff;
  text-align: center;
}

.mentorship-section p {
  font-size: 1.1rem;
  max-width: 850px;
  margin: 0 auto 40px auto;
  color: #555;
}

.mentorship-section img.hero-skyline-img {
  max-width: 80%;
  border-radius: 16px;
  margin: 30px auto;
  display: block;
}

/* =======================
   RESOURCES SECTION
======================= */
.resources-section {
  background-color: #fafafa;
  text-align: center;
}

.resources-section p {
  font-size: 1.1rem;
  max-width: 850px;
  margin: 0 auto 40px auto;
  color: #555;
}

.resource-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* =======================
   FINAL CTA SECTION
======================= */
.cta-section {
  background: linear-gradient(135deg, #7a1c1c, #9e2b2b);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: #fff;
  color: #7a1c1c;
  font-weight: 700;
}

.cta-section .btn:hover {
  background: #f3f3f3;
  transform: translateY(-3px);
}


/* ===============================
   CAMPAIGN SECTION
   =============================== */
.campaign-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* ensures stacking on small screens */
  background-color: #f9f9f9;
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Campaign Image */
.campaign-banner-img {
  width: 100%;
  max-width: 600px;      /* keeps image from dominating layout */
  height: auto;
  object-fit: scale-down;
  border-radius: 16px;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.campaign-banner-img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Campaign Content */
.campaign-banner-content {
  text-align: center;
  max-width: 550px;
  padding: 0 1.5rem;
}

.campaign-banner-content h2.campaign-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.75rem;
}

.campaign-banner-content p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.campaign-banner-content .btn {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 992px) {
  .campaign-banner {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .campaign-banner-img {
    max-width: 90%;
    margin-bottom: 1.5rem;
  }

  .campaign-banner-content h2.campaign-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 600px) {
  .campaign-banner {
    padding: 1.5rem 1rem;
    margin: 2rem 0;
  }

  .campaign-banner-img {
    max-width: 100%;
    border-radius: 12px;
  }

  .campaign-banner-content h2.campaign-title {
    font-size: 1.5rem;
  }

  .campaign-banner-content p {
    font-size: 1rem;
  }
}


/* =======================
   RESPONSIVE DESIGN
======================= */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-news-content h2 {
    font-size: 1.6rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 25px;
  }

  .cta-section {
    padding: 70px 20px;
  }
}
