* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sale Banner */
.sale-banner {
  background-color: #b68c34;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: bold;
}

/* Header */
.header {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo,
.logo img {
  height: 100px;
  width: 100px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #b68c34;
}

.header-icons {
  display: flex;
  gap: 15px;
}

.header-icons i {
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.header-icons i:hover {
  color: #b68c34;
}

/* Main Content */
.main-content {
  padding: 60px 0;
}

.inquiry-section {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.inquiry-image {
  flex: 1;
}

.inquiry-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.inquiry-content {
  flex: 1;
  padding-left: 20px;
}

.inquiry-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.inquiry-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* Contact Form */
.contact-section {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #b68c34;
}

.send-btn {
  background-color: #b68c34;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.send-btn:hover {
  background-color: #a07a2e;
}

/* Footer */
.footer {
  background-color: #4a4a4a;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: white;
  font-weight: bold;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 15px;
}

.email-signup {
  display: flex;
  margin-bottom: 20px;
}

.email-signup input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  font-size: 14px;
}

.email-signup button {
  background-color: #b68c34;
  border: none;
  padding: 10px 15px;
  border-radius: 0 3px 3px 0;
  color: white;
  cursor: pointer;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons i {
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #b68c34;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #b68c34;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #666;
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .inquiry-section {
    flex-direction: column;
    text-align: center;
  }

  .inquiry-content {
    padding-left: 0;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 15px;
  }

  .nav-link {
    font-size: 12px;
  }
}