.footer-container {
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
  height: auto;
  text-align: center;
  margin-top: 5%;
}

.footer-body {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 44px;
  letter-spacing: 0;
  color: var(--text-dark);
}

.sc-links-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.sc-buttons {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

.links {
  width: 100%;
  max-width: 464px;
  height: 80px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: none;
  background-color: #ffffff;
  color: var(--text-dark);
  font-weight: 600;
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.links:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.links img {
  height: 20px;
  width: 20px;
}

.footer-contact {
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3rem;
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 22px;
  letter-spacing: 0;
  font-weight: 400;
  gap: 5px;
}

.tel {
  margin-left: 3px;
}

.footer-top,
.footer-bottom {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .footer-container {
    margin-top: 1%;
  }

  .footer-title{
    font-size: 25px;
  }

  .links {
    font-size: 14px;
    font-weight: 600;
    height: 64px;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    gap: 0px;
    line-height: 14px;
    letter-spacing: 0;
  }

  .footer-top,
  .footer-bottom {
    display: inline-block;
    margin: 0;
  }

  .footer-contact p {
    font-family: "Roboto", sans-serif;
    display: inline;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0;
  }
}
