.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-header p {
  font-size: 1.1rem;
  color: #555;
}

.contact-section {
  padding: 60px 5%;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #222;
}

.contact-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-form p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #555;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}

.contact-form form .form-row {
  display: flex;
  gap: 15px;
}

.contact-form form textarea {
  min-height: 120px;
  resize: none;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #555;
}
.captcha label {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* space between checkbox and text */
  font-size: 16px;
  cursor: pointer;
}
.captcha input {
  width: 18px;
  height: 18px;
}

.contact-form button {
  background: #222;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #444;
}


/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

.hero-section {
  height: 100vh;
  background: #f5f5f5; /* or add your background image/color */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay h1 {
  font-size: 3rem;
  color: #333;
  text-align: center;
}


/* faq style */

.faq-section {
  background-color: #faf3e0;
  padding: 40px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-container h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.more-questions {
  display: inline-block;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 10px 0;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}