/* .about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 60px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
} */
.about {
  background: #f9fafb;
  padding: 100px 50px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1 1 500px;
  max-width: 650px;
}

.about-text h1 {
  color: #006c5f;
  font-size: 2.2em;
  margin-bottom: 5px;
}

.about-text h2 {
  color: #009e84;
  font-size: 1.4em;
  margin-bottom: 25px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.highlight-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-card i {
  color: #006c5f;
  font-size: 28px;
  margin-bottom: 10px;
}

.highlight-card h3 {
  color: #006c5f;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.highlight-card p {
  color: #555;
  font-size: 0.95em;
}

.highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-card ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.highlight-card ul li i {
  color: #009e84;
  margin-right: 8px;
}

.about-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn {
  background-color: #006c5f;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  transition: background 0.3s ease;
  font-weight: 500;
}

.btn:hover {
  background-color: #009e84;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #006c5f;
  color: #006c5f;
}

.btn-outline:hover {
  background-color: #006c5f;
  color: #fff;
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.quote {
  text-align: center;
  background: #006c5f;
  color: #fff;
  padding: 60px 20px;
  font-style: italic;
}

.quote span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}
.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;
  }
}
