/* Base Container Enhancements */
.contact-section {
  background-color: #f9fbfd;
  padding: 60px 20px;
  color: #333;
}

/* Centering & Responsiveness */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

/* Text Column Styling */
.contact-left {
  flex: 1 1 320px;
  animation: fadeInRight 1s ease-out both;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #0270D7;
}

.contact-info {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 70%;
}

.contact-info a {
  color: #0270D7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info a:hover {
  color: #005bb5;
}

/* Image Column Styling */
.contact-right {
  flex: 0 0 280px;
  text-align: center;
  animation: fadeInLeft 1s ease-out both;
}

.support-img {
  max-width: 100%;
  height: 500px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.support-img:hover {
  transform: scale(1.05);
}

/* Button Enhancements */
.button {
  display: inline-block;
  background-color: #0270D7;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.button:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
}

/* Animations Keyframes */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-left,
  .contact-right {
    flex: 1 1 auto;
  }
  .contact-left {
    animation: fadeInUp 1s ease-out both;
  }
  .contact-right {
    animation: fadeInUp 1s ease-out both;
    animation-delay: 0.3s;
  }
}
