/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

/* Top Bar */
.top-bar {
  background: #800000;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Header Section */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
}

header h2 {
  margin: 0;
  font-size: 24px;
  color: #800000;
  font-weight: bold;
}

/* Navbar */
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e74c3c;
}

/* Contact Section */
.contact {
  padding: 50px 20px;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

.contact h3 {
  margin-bottom: 15px;
  color: #800000;
  font-size: 22px;
}

.contact p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  resize: none;
}

.contact button {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #c0392b;
}

/* Image Banner */
.image-banner {
  margin: 40px auto;
  max-width: 800px;
}

.image-banner img {
  width: 100%;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.faq h3 {
  margin-bottom: 20px;
  text-align: center;
  color: #800000;
  font-size: 22px;
}

.faq-item {
  margin: 15px 0;
  padding: 15px;
  background: #f9f9f9;
  border-left: 4px solid #800000;
  border-radius: 6px;
}

.faq-item p {
  margin: 5px 0;
  color: #444;
  font-size: 14px;
}

/* Footer */
.footer {
  background: #3b281c;
  color: #fff;
  padding: 25px 15px;
  font-size: 13px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  padding: 5px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: bold;
}

.footer-section p {
  margin: 4px 0;
  color: #ddd;
  font-size: 13px;
}

/* Social Icons */
.social-icons {
  margin: 8px 0;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff6f61;
}

/* Footer Inquiry Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inquiry-form label {
  font-size: 12px;
  color: #ccc;
}

.inquiry-form input {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 13px;
}

.inquiry-form button {
  padding: 8px;
  border: none;
  border-radius: 15px;
  background: #8b5e3c;
  color: white;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.inquiry-form button:hover {
  background: #6a4428;
}

/* Copyright */
.footer .copyright {
  margin-top: 10px;
  font-size: 12px;
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .contact,
  .faq {
    padding: 25px 15px;
  }
}
