/* Ensure the footer matches the main container styling */
.footer {
  background-color:  #205464;  
 
  /* color: #fff;   */
  padding: 50px 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  
    
}

/* Match the footer width to the main container */
.footer-container {
  max-width: 1200px;  /* Same max-width as the main container */
  margin: 0 auto;  /* Center-align */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  color:rgb(33 188 204);
}

/* Contact Info and Support Info styling */
.contact-info, .support-info, .social-media, .general-info-sec {
  flex: 1;
  min-width: 250px;
  padding: 10px;
 
}


/* For Contact Us section */
.contact-info {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: flex-start; /* Align left */
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  
}

/* Style the contact information below the "Contact Us" heading */
ul {
  list-style: none;
  /* padding: 0; */
}

ul li {
  margin: 12px 0;
  font-size: 1rem;
  font-weight: 300;
  display: flex;
  align-items: center;
}

ul li i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #888;
}

/* Support section styling */
.support-info {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: flex-start; /* Align left */
}

.support-info ul li {
  margin: 12px 0;
  font-size: 1rem;
  font-weight: 300;
  display: flex;
  align-items: center;
}

.support-info ul li a {
  text-decoration: none;
  color: #fff;
}

.support-info ul li a:hover {
  color: #3498db;
}

.general-info-sec .support-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.social-media .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #3498db;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 300;
  color: #777;
}

.footer-bottom p {
  margin: 0;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}
