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

body {
  font-family: Arial, sans-serif;
  background: #f7f9fc;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #ff6b6b, #ffb347, #4facfe);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.top-text {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.hero-buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: bold;
  margin: 10px;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary {
  background: #ffffff;
  color: #ff5a5f;
}

.primary:hover {
  background: #ffe7e7;
}

.secondary {
  background: #1f2937;
  color: white;
}

.secondary:hover {
  background: #111827;
}

.accent {
  background: #00c896;
  color: white;
}

.accent:hover {
  background: #009f77;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 50px 0;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.card h2 {
  color: #ff5a5f;
  margin-bottom: 10px;
  font-size: 22px;
}

.order-form-section,
.policy-section {
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

.order-form-section h2,
.policy-section h2 {
  text-align: center;
  margin-bottom: 12px;
  color: #ff5a5f;
  font-size: 30px;
}

.form-intro {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
  font-size: 17px;
}

.order-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px;
  border: 1px solid #d9e1ea;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4facfe;
}

.form-btn {
  width: 100%;
  font-size: 17px;
}

.hidden-field {
  display: none;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.policy-card {
  background: #f7f9fc;
  border: 1px solid #e5ebf2;
  padding: 25px;
  border-radius: 14px;
}

.policy-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.site-footer {
  background: #111827;
  color: #ffffff;
  text-align: center;
  padding: 30px 20px;
}

.site-footer p {
  margin-bottom: 10px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 10px auto;
    text-align: center;
  }

  .order-form-section,
  .policy-section {
    padding: 25px;
  }
}