/* ===== Focus Areas Page Styling ===== */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8fff9;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Section */
.focus-areas-section {
  padding: 100px 20px 80px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #006400;
  margin-bottom: 15px;
}

.section-subtitle {
  max-width: 750px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.focus-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px 20px;
  box-shadow: 0 6px 14px rgba(0, 100, 0, 0.08);
  transition: all 0.3s ease;
}

.focus-card:hover {
  background: #00a86b;
  color: #fff;
  transform: translateY(-6px);
}

.focus-card h3 {
  color: #006400;
  font-size: 1.3rem;
  margin: 15px 0 10px;
}

.focus-card:hover h3 {
  color: #fff;
}

.focus-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #00a86b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  margin: 0 auto;
  transition: 0.3s ease;
}

.focus-card:hover .icon-circle {
  background: #fff;
  color: #00a86b;
  transform: scale(1.15);
}

/* Footer */
.site-footer {
  background: #004d1a;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-logo {
  width: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #b5f5c9;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00ff99;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-contact i {
  margin-right: 8px;
  color: #00ff99;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.9rem;
}
