#cta {
  text-align: center;
  margin: 30px 0;
}

#cta h3 {
  color: white;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #313552;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.dark {
  background-color: #1e1e2f;
  margin: 0.5rem;
}

.cta-button:hover {
  color: black;
  background: #48e5c2;
  transform: scale(1.05);
}

.cta-form {
  margin-top: 20px;
  padding: 20px;
  background-color: #313552;
  border-radius: 10px;
  color: white;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none;
}
#contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

@media screen and (max-width: 600px) {
  #contact-icons {
    flex-direction: column;
    align-items: center;
  }
}

.contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #313552;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 150px;
  text-align: center;
}

.contact-icon i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-icon span {
  font-size: 1rem;
  font-weight: bold;
}

.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.email-icon {
  background: #313552;
}

.email-icon:hover {
  color: black;
}

.phone-icon {
  background: #313552;
}

.phone-icon:hover {
  color: black;
}

.contact-icon {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-icon.visible {
  opacity: 1;
  transform: translateY(0);
}
