:root {
  --red: #dc0201;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --bg-alt: #f7f5f4;
  --max-width: 860px;
}

* { box-sizing: border-box; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: auto;
  width: 100%;
  max-width: 520px;
}

/* Hero */
.hero {
  background: var(--red);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.hero h2 {
  margin: 0 0 20px;
  font-size: 2rem;
  color: #fff;
}

.hero p {
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: 1.1rem;
  opacity: 0.95;
  text-align: left;
}

.btn {
  display: inline-block;
  background: #fff;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 4px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  color: var(--red);
  margin-top: 0;
  font-size: 1.6rem;
  border-bottom: 3px solid var(--red);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 20px;
}

.section p {
  margin: 0 0 16px;
  max-width: 640px;
}

.section-center {
  text-align: center;
}

.section-center p,
.section-center .contact-details {
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-details p {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.contact-details a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Contact form */
.contact-form {
  max-width: 480px;
  margin: 32px auto 0;
  text-align: left;
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 2, 1, 0.12);
}

.btn-primary {
  display: block;
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  box-shadow: 0 4px 12px rgba(220, 2, 1, 0.3);
}

/* Footer */
.site-footer {
  padding: 24px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .hero h2 { font-size: 1.5rem; }
}
