/* === Global Styles === */
body {
  background-color: #ffffff;
  color: #151515;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* === Fixed Header === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* === Hero Section === */
.contact-hero {
  background: #f8f8f8;
  text-align: center;
  padding: 80px 20px 60px; /* Extra top padding to avoid overlap with fixed header */
}

.contact-hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #151515;
}

.contact-hero p {
  font-size: 1.2em;
  color: #151515;
}

/* === Contact Info Section === */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
  background: #ffffff;
}

.info-block {
  flex: 1 1 250px;
  margin: 20px;
  text-align: center;
}

.info-block h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #007bff;
}

.info-block p {
  font-size: 1.1em;
  color: #151515;
}

.social-links a {
  color: #007bff;
  font-size: 1.5em;
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #0056b3;
}

/* === Map Section === */
.contact-map iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: 0;
}

/* === Contact Form Section === */
.contact-form {
  background: #f8f8f8;
  padding: 40px 20px;
}

.contact-form h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.contact-form form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  margin: 10px 0;
  border: 2px solid #007bff;
  border-radius: 5px;
  font-size: 1em;
  color: #151515;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0056b3;
  outline: none;
}

.contact-form button {
  background: #007bff;
  color: #ffffff;
  padding: 15px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

/* === FAQ Section === */
.faq-section {
  padding: 40px 20px;
  background: #ffffff;
}

.faq-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.faq {
  max-width: 800px;
  margin: 10px auto;
}

.faq h3 {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 5px;
}

.faq p {
  font-size: 1em;
  color: #151515;
}

/* === Responsive Design === */
@media(max-width: 1024px) {
  .contact-hero h1 {
    font-size: 2.5em;
  }
  .contact-hero p {
    font-size: 1em;
  }
}

@media(max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .info-block {
    margin: 20px 0;
    width: 100%;
  }

  .contact-form form {
    padding: 0 10px;
  }

  .faq-section h2 {
    font-size: 1.5em;
  }

  .faq h3 {
    font-size: 1.1em;
  }

  .contact-hero {
    padding-top: 100px; /* Account for fixed header on mobile */
  }
}

@media(max-width: 480px) {
  .contact-hero h1 {
    font-size: 2em;
  }

  .contact-form button {
    font-size: 1em;
    padding: 12px;
  }

  .social-links a {
    font-size: 1.2em;
    margin-right: 8px;
  }
}
