/* Footer Section */
.footer-section {
  background-color: #1a2a42;
  color: #fff;
  padding: 40px 0 20px;
  font-family: 'Roboto', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Logo Section */
.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
  margin-bottom: 15px;
}

.footer-description {
  color: #b3b3b3;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Footer Links Section */
.footer-links {
  margin-bottom: 20px;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #4dabf7;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  color: #b3b3b3;
  line-height: 1.5;
}

.footer-links li i {
  margin-right: 10px;
  color: #4dabf7;
  font-size: 12px;
  margin-top: 3px;
}

.footer-links a {
  text-decoration: none;
  color: #b3b3b3;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #4dabf7;
  padding-left: 5px;
}

/* Footer Contact Section */
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #4dabf7;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 15px;
  font-size: 14px;
  color: #b3b3b3;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.footer-contact i {
  margin-right: 10px;
  color: #4dabf7;
  font-size: 16px;
  margin-top: 3px;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #b3b3b3;
}

.footer-bottom p {
  margin: 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-logo {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-logo-img {
    margin: 0 auto 15px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links li,
  .footer-contact li {
    justify-content: center;
  }
  
  .footer-links ul,
  .footer-contact ul {
    max-width: 250px;
    margin: 0 auto;
  }
}