/* style.css */
/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Important! */
}

/* Footer Styles */
.footer {
  width: 100%;
  background: black;
  color: white;
  padding-top: 60px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%; /* Use percentage padding */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-about {
  flex-basis: 30%; /* Use percentage flex-basis */
  min-width: 250px; /* Prevent it from getting too narrow */
}

.footer-logo {
  margin-top: 40px;
  width: 205px;
  height: auto;
}

.footer-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.footer-contact {
  flex-basis: 25%; /* Use percentage flex-basis */
  min-width: 250px;
}

.footer-links {
  flex-basis: 25%; /* Use percentage flex-basis */
  min-width: 200px;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: #20864A;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.contact-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 1px;
}

.social-heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  margin: 30px 0 15px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s;
  display: block;
}

.social-icon:hover {
  transform: scale(1.1);
}

.links-list {
  list-style: none;
  padding: 0;
}

.links-list li {
  margin-bottom: 15px;
}

.links-list a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 2px;
  transition: color 0.3s;
  display: block;
  padding-bottom: 5px;
}

.links-list a:hover {
  color: #20864A;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 5%; /* Use percentage padding */
  text-align: right;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
      padding: 0 3%; /* Use percentage padding */
  }

  .footer-bottom {
      padding: 20px 3%; /* Use percentage padding */
  }
}

@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      gap: 40px;
      padding: 30px;
  }

  .footer-about,
  .footer-contact,
  .footer-links {
      width: 100%;
      flex-basis: auto; /* Reset flex-basis on smaller screens */
  }

  .footer-description {
      font-size: 16px;
      line-height: 22px;
      margin-bottom: 20px;
  }

  .footer-logo {
      margin-top: 20px;
      width: 180px;
  }

  .footer-heading,
  .contact-text,
  .footer-bottom p {
      font-size: 14px;
      line-height: 20px;
  }

  .contact-item {
      margin-bottom: 15px;
  }

  .social-heading {
      margin-top: 20px;
      margin-bottom: 10px;
  }

  .links-list li {
      margin-bottom: 10px;
  }

  .links-list a {
      font-size: 14px;
      line-height: 30px;
      letter-spacing: 1px;
      padding-bottom: 3px;
  }

  .footer-bottom {
      padding: 15px 30px;
      text-align: center;
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer-description {
      font-size: 15px;
      line-height: 21px;
  }

  .contact-text {
      font-size: 14px;
      line-height: 20px;
  }

  .social-icons {
      gap: 15px;
  }

  .social-icon {
      width: 35px;
      height: 35px;
  }
}