.team {
  padding: 100px 60px;
  background: #f7faf9;
  text-align: center;
}

.team h2 {
  font-size: 2.2em;
  color: #00695c;
  margin-bottom: 10px;
}

.team .intro-text {
  color: #555;
  font-size: 1.1em;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.member {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 270px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.member h3 {
  color: #333;
  margin-bottom: 5px;
}

.member .title {
  color: #009688;
  font-weight: 600;
  margin-bottom: 10px;
}

.member p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.5;
}
.missionaries {
  padding: 100px 60px;
  background: #fff;
  text-align: center;
}

.missionaries h2 {
  font-size: 2.2em;
  color: #00695c;
  margin-bottom: 10px;
}

.missionaries .intro-text {
  font-size: 1.1em;
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.missionary-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.missionary {
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 280px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.missionary:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.missionary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.missionary h3 {
  color: #333;
  margin-bottom: 8px;
}

.missionary p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.5;
}

.values {
  padding: 100px 60px;
  background: #f9f9f9;
  text-align: center;
}

.values h2 {
  font-size: 2.2em;
  color: #00695c;
  margin-bottom: 10px;
}

.values .intro-text {
  font-size: 1.1em;
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.value {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 250px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.value i {
  font-size: 35px;
  color: #009688;
  margin-bottom: 15px;
}

.value h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.value p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.5;
}

.join-team {
  margin-top: 60px;
  background: #e0f2f1;
  padding: 50px 30px;
  border-radius: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.join-team h2 {
  color: #004d40;
  margin-bottom: 15px;
}

.join-team p {
  color: #444;
  font-size: 1.05em;
  margin-bottom: 25px;
}

.join-team .btn {
  background: #009688;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.join-team .btn:hover {
  background: #00796b;
}
.footer {
  background: #0b3c49;
  color: #fff;
  padding: 40px 20px 10px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: #00d1b2;
}

.footer-column p {
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
}

.social-icons a:hover {
  color: #00d1b2;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ffffff44;
  padding-top: 10px;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
