   body {
      font-family: 'Helvetica', sans-serif;
      background: #f8f9fa;
      margin: 0;
      padding: 0;
    }

    /* Contact Page Styles */
    .contact-section {
      padding: 80px 20px;
      background: #fff;
    }

    .contact-section h2 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5rem;
    }

    .contact-form {
      background: #fdfdfd;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .contact-form .form-control {
      border-radius: 10px;
      padding: 12px;
    }

    .contact-form button {
      background: #222;
      color: #fff;
      padding: 12px 20px;
      border-radius: 10px;
      border: none;
      transition: 0.3s;
    }

    .contact-form button:hover {
      background: #444;
    }

    .map-container {
      margin-top: 40px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    iframe {
      width: 100%;
      height: 400px;
      border: 0;
    }

    /* Footer fix */
    .modern-footer p,
    .modern-footer h5 {
      margin: 0;
      padding: 0;
    }

    /* Contact Section */
.contact-section {
  padding: 80px 20px;
 
  background: #f8f9fa;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #222;
}

/* Form Box */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-form .form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #222;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.contact-form button {
  background: #222;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  transition: 0.3s;
  font-weight: 600;
}

.contact-form button:hover {
  background: #444;
}

/* Contact Info Box */
.contact-info {
  background: #fff;
  margin-top: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-info h5 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.contact-info p {
  margin-bottom: 16px;
  font-size: 15px;
  color: #555;
}

.contact-info i {
  margin-right: 8px;
  color: #d35400; /* orange accent */
}

/* Map */
.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }
  .contact-info {
    padding: 20px;
  }
}