body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #0f172a;
  color: white;
  padding: 28px 0 22px;
  border-bottom: 4px solid #d4af37;
}

.site-header h1 {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 1px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-right: 24px;
  font-size: 19px;
  font-weight: bold;
}

nav a:hover {
  color: #d4af37;
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: white;
  padding: 90px 0;
  text-align: center;
}

.hero h2 {
  font-size: 54px;
  margin-bottom: 18px;
}

.hero p {
  font-size: 24px;
  max-width: 820px;
  margin: 0 auto 30px;
}

.buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  background: #d4af37;
  color: #0f172a;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 6px;
  margin-right: 10px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 17px;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.section {
  padding: 56px 0;
}

.section p,
.section li {
  font-size: 20px;
}

.section h3 {
  font-size: 32px;
  margin-bottom: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.card h3 {
  margin-top: 0;
}

.card a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.site-footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 28px 0;
  margin-top: 40px;
  font-size: 17px;
}

form label {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 4px;
  font-size: 18px;
}

form input,
form textarea {
  width: 100%;
  max-width: 600px;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 18px;
  box-sizing: border-box;
}

form textarea {
  min-height: 180px;
  resize: vertical;
}

form p {
  margin-bottom: 20px;
}