.footer {
  background: #0d382e;
  color: white;
  padding: 60px 20px;
  font-family: sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.social-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}

.socials {
  font-size: 22px;
  display: flex;
  align-items: center;
}

.final-cta h3 {
  font-size: 1.8rem;
}

.socials img {
  filter: invert(100%) brightness(200%);
  width: 24px;
  height: auto;
  margin-left: 15px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.socials span:hover {
  color: #419468;
}

.footer-line {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 25px 0;
}

.address {
  margin-top: 40px;
  line-height: 1.6;
  font-size: 18px;
  text-align: center;
  color: #e0e0e0;
}

.strong {
  margin-bottom: -22px;
  display: block;
  font-size: 24px;
  color: #ffffff;
}

.reservation {
  padding: 40px 10%;
  width: 100%;
  color: #a0a0a0;
  background-color: #00261d;
  font-size: 12px;
  line-height: 1.8;
  text-align: justify;
}

.reservation p {
  margin-bottom: 15px;
}

.reservation img {
  width: 10px;
  filter: invert(100%) brightness(200%);
  transform: rotate(270deg);
  margin-left: 10px;
}

.reservation-text {
  display: block;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
}

a {
  color: #419468;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #58c08a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .social-header {
    flex-direction: column;
    gap: 20px;
  }
  
  .reservation {
    padding: 30px 20px;
  }

  .social-header {
    text-align: center;
  }
}