.home {
  background-color: #f9fafb;
  padding: 100px 60px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.home-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.home-text h1 {
  color: #006c5f;
  font-size: 2.4em;
  margin-bottom: 10px;
}

.home-text h2 {
  color: #009e84;
  font-size: 1.6em;
  margin-bottom: 20px;
}

.home-text p {
  font-size: 1.05em;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.highlight {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 160px;
  transition: transform 0.3s ease;
}

.highlight:hover {
  transform: translateY(-4px);
}

.highlight i {
  color: #006c5f;
  font-size: 22px;
}

.home-buttons {
  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;
}

.home-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.home-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.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;
  }
}

