/* Wrapper */
.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  padding: 60px 40px;
  background: #fff;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  flex-wrap: wrap;
}

/* Image */
.contact-image img {
  width: 520px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25); /* soft shadow */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

/* Text area */
.contact-details {
  color: #123249;
  max-width: 420px;
}

/* Main heading */
.contact-details h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #123249;
  margin-bottom: 8px;
}

.underline {
  width: 45px;
  height: 3px;
  background-color: #123249;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Subheading */
.contact-details h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Tight spacing and bold labels */
.contact-details p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #123249;
  margin: 0;
  line-height: 1.25;
}

.contact-details p + p {
  margin-top: 4px;
}

.label {
  font-weight: 700;
  margin-right: 6px;
}

/* Links */
.contact-details a {
  color: #123249;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #0078ff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 22px;
  }

  .underline {
    margin: 0 auto 20px auto;
  }
}