```css

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #222;
}

.section-title.light {
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #1a56db;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  background: #123a94;
}

/* SECTION 1 - Featured Resources */
.featured-resources {
  background: #f9fafc;
  padding: 60px 0;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: linear-gradient(to bottom, #0d1a4f, #123a94);
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.card .tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.8;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.card-link {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
}

.center-btn {
  text-align: center;
  margin-top: 30px;
}

/* SECTION 2 - How We Help */
.how-we-help {
  background: linear-gradient(to right, #0d1a4f, #123a94);
  color: #fff;
  padding: 80px 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.help-box {
  background: #1e3a8a;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.help-box .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.help-box h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* SECTION 3 - Services Overview */
.services-overview {
  background: #f9fafc;
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.service-list li {
  margin-bottom: 15px;
  font-size: 1rem;
}

.image-col img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .card-wrapper {
    flex-direction: column;
    align-items: center;
  }
}


.services-slim {
  padding: 70px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.services-slim .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #222;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.service-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.services-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-list {
    align-items: center;
  }
}



