.contact-section {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff5f7;
  color: #c2185b;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.contact-container {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on small screens */
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  /* Increased from 1000px to 1200px to accommodate larger image/fonts and prevent wrapping */
  max-width: 1200px; 
  width: 90%;
}

.contact-image img {
  width: 600px; 
  max-width: 100%;
}

.contact-details {
  /* Added min-width to ensure content is visible and takes appropriate space */
  flex: 1;
  min-width: 300px; /* Ensures the content block maintains a minimum width */
  text-align: left;
}

.contact-details h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px; 
  color: #b0003a;
  text-shadow: 1px 1px #ffd5e1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px; 
  font-size: 1.3rem; 
  margin-bottom: 20px; 
}

.contact-item a {
  color: #b0003a;
  text-decoration: none;
  transition: 0.3s;
}

.contact-item a:hover {
  color: #ff4081;
}

.social-icons {
  display: flex;
  gap: 20px; 
  margin-top: 30px; 
}

.social-icons a {
  font-size: 2.2rem;
  color: #b0003a;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff4081;
  transform: scale(1.1);
}

.brand-name {
  font-size: 1.8rem;
  margin-top: 15px; 
  font-weight: 600;
  color: #c2185b;
}

@media (max-width: 768px) {
  .contact-container {
    /* Ensures stacking vertically on mobile (image on top, content below) */
    flex-direction: column; 
    text-align: center;
  }

  .contact-details {
    text-align: center;
  }
  
  .contact-image img {
    width: 100%; 
    max-width: 400px;
  }
  
  .contact-details h2 {
    font-size: 2rem;
  }
  
  .contact-item {
    font-size: 1.2rem;
    /* Center text items and icons together on small screens */
    justify-content: center; 
  }
  
  .social-icons {
     /* Center the social icons block on small screens */
    justify-content: center;
  }
  
  .social-icons a {
    font-size: 2rem;
  }
  
  .brand-name {
    font-size: 1.6rem;
  }
}