body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #222;
  background-color: #fef9ec;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3 {
  margin: 0;
}
.header, .footer {
  width: 100%;
  background-color: #fff8e1;
  border-bottom: 1px solid #eee;
}
.header {
  position: sticky;
  top: 0;
  z-index: 999;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  max-height: 50px;
}
.nav-links {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.nav-link {
  margin-left: 20px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
}
.nav-link:hover {
  color: #dca100;
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffe56f, #ffd254);
  min-height: 600px;
  box-sizing: border-box;
}
.hero h1 {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
}
.btn-primary {
  background-color: #dca100;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s;
}
.btn-primary:hover {
  background-color: #c38f00;
}
.section {
  padding: 60px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.section h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #222;
  position: relative;
}
.section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #dca100;
  margin-top: 10px;
  border-radius: 2px;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex: 1 1 280px;
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #222;
}
.card p {
  font-size: 0.95em;
  color: #555;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.timeline-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background-color: #dca100;
  border-radius: 50%;
  margin-top: 10px;
}
.timeline-content {
  flex: 1;
}
.timeline-step {
  font-weight: 600;
  margin-bottom: 8px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.table th, .table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
.table th {
  background-color: #f7f7f7;
  font-weight: 600;
}
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.faq-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.95em;
  margin-top: 8px;
  color: #333;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.customer-comments {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comment-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.comment-author {
  font-weight: 600;
  margin-bottom: 10px;
}
.comment-text {
  font-size: 0.95em;
  color: #555;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}
.contact-form button {
  align-self: flex-start;
  background-color: #dca100;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background-color: #c38f00;
}
.footer {
  background-color: #333;
  color: #eee;
  padding: 40px 20px;
  font-size: 14px;
}
.footer h3 {
  color: #fff;
  margin-bottom: 15px;
}
.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer a {
  color: #eee;
  font-size: 14px;
}
.footer a:hover {
  color: #ffd254;
}
.qr-code {
  max-width: 100px;
  display: block;
  margin-top: 10px;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #dca100;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}
.back-to-top:hover {
  background-color: #c38f00;
}
@media(max-width:768px) {
  .header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    margin-top: 10px;
    justify-content: flex-start;
  }
  .cards {
    flex-direction: column;
  }
  .timeline-item {
    flex-direction: column;
  }
  .footer {
    text-align: center;
  }
}