body {
    background-color: #f9f9f9;
}

.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  color: #c40000;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form select {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.contact-form button {
  background-color: #c40000;
  color: white;
  border: none;
  padding: 12px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #f1c40f;
  color: #000;
}

.phone-wrapper {
  display: flex;
  gap: 10px;
}

.contact-form textarea
{
    padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form textarea:focus {
  border-color: #c40000;
}

@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 26px;
  }

  .contact-form {
    padding: 20px;
    width: 90%;
  }

  .phone-wrapper {
    flex-direction: column;
  }

.phone-wrapper select {
  width: 100%;
  max-width: 120px;
}

.phone-wrapper input {
  width: 100%;
}


  .contact-form button {
    font-size: 16px;
    padding: 10px;
  }
}

/* ===== FAQ ===== */
.faq-section {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 20px 40px;
  text-align: left;
  background-color: #f9f9f9;
}

.faq-section h3 {
  text-align: center;
  font-size: 28px;
  color: #c40000;
  margin-bottom: 20px;
}

.faq-list {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid #eee;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  text-align: left;
  padding: 18px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.faq-q:hover { background: #fafafa; }

.faq-icon {
  transition: transform 0.25s ease;
  fill: #c40000;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
  padding: 0 22px;
  background: #fff;
}

.faq-a p {
  margin: 14px 0 18px;
  line-height: 1.6;
  color: #444;
}

.faq-a.open {
  padding-bottom: 16px;
}

.faq-empty {
  padding: 18px 22px;
  color: #555;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .faq-section h3 { font-size: 24px; }
  .faq-q { font-size: 15px; padding: 16px 18px; }
  .faq-a { padding: 0 18px; }
}