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

:root {
  --primary: #1a365d;
  --primary-light: #2a4a7f;
  --accent: #e53e3e;
  --bg: #f7fafc;
  --card-bg: #ffffff;
  --text: #1a202c;
  --text-light: #718096;
  --border: #e2e8f0;
  --radius: 8px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header */
.header {
  background: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
}

.header h1 {
  font-size: 1.75rem;
  font-weight: 700;
}

.header p {
  color: #cbd5e0;
  margin-top: 0.25rem;
  font-size: 0.95rem;
}

/* Container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Info Sections */
.info-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.info-section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.info-section p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.info-section p:last-child {
  margin-bottom: 0;
}

.field-list {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.field-list li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.field-list li::before {
  content: "\2022";
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.field-list li strong {
  color: var(--text);
}

/* Order Form */
.county-detail {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.county-detail h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.checkbox-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.discount-note {
  font-weight: 400;
  font-size: 0.8rem;
  color: #38a169;
}

.text-muted {
  color: var(--text-light);
  font-size: 0.9rem;
}

.form-group select,
.form-group input[type="email"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: white;
}

.price-display {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0;
}

.btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background: #c53030;
}

.btn:disabled {
  background: #a0aec0;
  cursor: not-allowed;
}

.coming-soon {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1.25rem;
}

/* Success Page */
.success-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  max-width: 500px;
  margin: 2rem auto;
  text-align: center;
}

.success-box .checkmark {
  font-size: 3rem;
  color: #38a169;
  margin-bottom: 1rem;
}

.success-box h2 {
  margin-bottom: 0.75rem;
}

.success-box p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.success-box a {
  color: var(--primary);
  text-decoration: underline;
}

/* Error message */
.error-msg {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

/* Responsive */
@media (max-width: 600px) {
  .header h1 {
    font-size: 1.3rem;
  }

  .container {
    padding: 1rem;
  }
}
