/* General Footer Styling */
.footer {
  background-color: #000000;
  color: #222;
  padding: 50px 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex:auto;
  min-width: 180px;
}

.footer-section.about {
  flex: 2 1 150px;
  min-width: 50px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.footer-section p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-section a {
  text-decoration: none;
  color: #ffffff;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #ffffff;
}

.social-icons a:hover {
  color: #f23131;
}

/* Icon formatting in "Reach Out" section */
.footer-section ul li i {
  color: #f23131;
  margin-right: 8px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #ffffff;
  border-top: 1px solid #ccc;
  margin-top: 30px;
}

/* Responsive Layout */
/* Responsive Layout */
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; /* Reduced gap between sections */
  }

  .footer-section {
    width: 100%;
    margin-bottom: -10px; /* Reduced margin */
  }

  .footer {
    padding: 30px 20px 10px; /* Reduced padding for mobile */
  }

  .footer-bottom {
    text-align: left;
    margin-top: 20px; /* Reduced margin above footer bottom */
    padding-top: 10px; /* Reduced padding on top */
  }
}

