.footer {
   padding: 80px;
  background-color: #010D41;
  color: white;
}

.footer .container {
  margin: auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer .footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer .footer-left,
.footer .footer-right {
  /* flex: 1; */
  width: fit-content;
}

.footer .footer-title {
  font-size: 2rem;
  font-weight: bold;
}

.footer .dot {
  color: #f87171;
}

.footer .footer-subtitle,
.footer .footer-call,
.footer .footer-address p {
  color: #d1d5db;
}

.footer .footer-heading {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer .footer-icons a {
  color: #d1d5db;
  text-decoration: none;
}

.footer .footer-icons a:hover {
  color: #f87171;
}

.footer .footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.875rem;
  cursor: pointer;
}


@media (max-width: 600px) {
  .footer {
    display: flex;
    padding: 20px;
    padding-top: 30px;
    display: block;
  }

  .footer .container {
  margin: auto;
  }

  .footer .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .footer .footer-left,
  .footer .footer-right {
    width: 100%;
  }

  .footer h3,
  .footer h4, 
  .footer p {
    text-align: center !important;
  }

  .footer h3 {
    margin-bottom: 1rem;
  }

  .footer .footer-bottom {
    text-align: center;
  }
  
  .footer-call {
    margin-bottom: 1rem;
  }

}


