.contact-container {
  text-align: center;
  padding: 40px 20px;
  background: #fbeecf; /* soft pastel/golden background */
  border-top: 5px solid #b39d5d; /* gold accent */
}

.contact-container h2 {
  font-size: 2.5rem;
  color: #b39d5d; /* gold title */
  margin-bottom: 20px;
}

.contact-container p {
  font-size: 1.2rem;
  color: #5a4b3d; /* darker brown for readability */
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-item {
  max-width: 250px;
  text-align: center;
  background: #fff2e8; /* light cream card background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item img {
  width: 50px;        /* desktop/default size */
  height: 50px;
  object-fit: contain; /* maintain aspect ratio */
  margin-bottom: 15px;
  border-radius: 50%;  /* optional: makes it circular */
}

.contact-item p {
  font-size: 1rem;
  color: #5a4b3d; /* text color matches the section */
}

.contact-item a {
  color: #b39d5d; /* gold links */
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    width: 80%;
    margin-bottom: 20px;
  }

   .contact-item img {
    width: 40px;       /* slightly smaller on mobile */
    height: 40px;
  }
}
