.contact-wrapper {
  flex: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 0;
  text-align: center;
  color: #eee;
}

.contact-wrapper h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #f0c23c;
  margin-bottom: 40px;
}

.contact-block {
  margin-bottom: 50px;
}

.contact-block p {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.phone-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #eee;
}

.phone-icon {
  color: #f0c23c;
  margin-right: 8px;
}

.heart-icon {
  color: #f0c23c;
  margin-right: 8px;
}

.separator {
  width: 60px;
  height: 3px;
  background-color: #f0c23c;
  margin: 40px auto;
  border-radius: 2px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 2.8rem;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #f0c23c;
}
.email-icon {
  color: #f0c23c;
  margin-right: 8px;
}

.contact-block a {
  color: #eee;
  text-decoration: none;
  font-weight: bold;
}

.contact-block a:hover {
  color: #f0c23c;
  text-decoration: underline;
}

@media (min-width: 1600px) {
  .contact-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
  }

  .contact-wrapper h2 {
    font-size: 3.2rem;
  }

  .contact-block p {
    font-size: 2rem;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto 1px;
  }

  .separator {
    margin: 30px auto;
  }

  .social-icons {
    gap: 60px;
    margin-top: 80px;
  }
  .contact-block {
    margin-bottom: 10px;
  }
  .social-icons a {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 16px 20px;
    box-sizing: border-box;
  }

  .contact-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .contact-block p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .phone-number {
    font-size: 1.1rem;
    font-weight: bold;
  }

  .email-icon,
  .phone-icon,
  .heart-icon {
    color: #f0c23c;
    margin-right: 6px;
    font-size: 1rem;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .social-icons a {
    font-size: 2rem;
  }

  .contact-block a {
    font-size: 0.9rem;
    text-decoration: none;
    color: #eee;
    font-weight: bold;
    word-break: break-word;
  }

  .contact-block a:hover {
    color: #f0c23c;
    text-decoration: underline;
  }
}
