.cta {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #2F476D;
  color: white;
}

.cta p {
  margin: 1rem 0 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
justify-content: center;
align-items: center;
}

.cta-btn {
  width: 240px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.cta-btn-primary {
  background: #25D366;
  color: white;
  border-color: transparent;
}

.cta-btn-secondary {
  background: #2F476D;
  color: white;
  border-color: white;
}

.cta-btn-primary:hover {
  background: #1F3354;
  transform: scale(1.03);
}

.cta-btn-secondary:hover {
  background: #1F3354;
  transform: scale(1.03);
}

.social {
  text-align: center;
  padding: 2rem 1rem;
  background: #f9f9f9;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon {
  width: 40px;
  height: 40px;

  transition: transform 0.40s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.social-link:hover .social-icon{
  transform: translateY(-6px) scale(1.15);
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #918699;
  color: white;
  text-align: center;
  justify-content: center;
  padding: 0rem 0rem;
}

.footer a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 0rem 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 1rem;
  gap: 2rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 0rem 0;
  gap: 0rem;
  
}

.footer-note {
  margin-top: 1rem;
  font-style: italic;
  opacity: 0.9;
}

.footer-copy {
  margin-top: 0rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (min-width: 768px) {

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
 }



.footer-contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin: 0rem 0;
  gap: 2rem;
}

}