/* About Section Container */
#about {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Section Title */
#about .section-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f3542;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

#about .section-title h1::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #3e7b27;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

#about .section-title p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 25px auto 40px;
  line-height: 1.6;
}

/* Content Styling */
#about h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #2f3542;
  margin-bottom: 25px;
  line-height: 1.3;
}

#about p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Image Styling */
#about img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}

/* Divider Line */
#about .line {
  height: 2px;
  background: linear-gradient(to right, transparent, #3e7b27, transparent);
  margin: 40px auto;
  max-width: 200px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #about {
    padding: 60px 0;
  }

  #about .section-title h1 {
    font-size: 2rem;
  }

  #about h1 {
    font-size: 1.7rem;
  }

  #about .section-title p,
  #about p {
    font-size: 1rem;
  }
}

/* Footer Container */
footer {
  background-color: #2f3542;
  color: #ffffff;
  padding: 60px 0 30px;
  font-family: "Segoe UI", sans-serif;
}

/* Footer Top Section */
.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Section */
.footer-brand {
  margin-bottom: 25px;
}

.footer-brand img {
  max-height: 40px;
  margin-bottom: 15px;
}

/* Footer Description */
.footer-description {
  color: #a8a8a8;
  line-height: 1.7;
  font-size: 16px;
  max-width: 800px; /* Optimal reading width */
  margin: 0 auto 25px;
  padding: 0 20px;
  text-align: center;
}
/* Social Icons Container */
.social-container {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #3e7b27;
  transform: translateY(-3px);
}

/* Footer Bottom Section */
.footer-bottom {
  padding-top: 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.footer-bottom p {
  color: #a8a8a8;
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: #3e7b27;
  text-decoration: underline;
}

/* Checkbox Items (if needed) */
.checkbox-items {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-brand {
    text-align: center;
  }
}
