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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0f172a;
  color: #f9fafb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 48px;
  width: auto;
}

.nav a {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  opacity: 1;
  font-weight: 600;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: #f9fafb;
  padding: 4rem 0 4.5rem;
}

.hero-subpage {
  padding: 3rem 0 3.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero p {
  max-width: 650px;
  font-size: 1rem;
  opacity: 0.95;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn.primary {
  background-color: #f97316; /* orange */
  color: #111827;
}

.btn.primary:hover {
  background-color: #ea580c;
}

.btn.secondary {
  background-color: transparent;
  color: #f9fafb;
  border-color: #e5e7eb;
}

.btn.secondary:hover {
  background-color: rgba(15, 23, 42, 0.4);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: #f9fafb;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 650px;
  margin-bottom: 2rem;
  color: #4b5563;
}

/* Layout helpers */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 1.25rem;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0.25rem 0 0;
}

.card li {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

/* Misc content */
.highlight-box {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.highlight-box h3 {
  margin-top: 0;
}

.bullet-list {
  padding-left: 1.1rem;
}

.bullet-list li {
  margin-bottom: 0.4rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: #1d4ed8;
  text-decoration: underline;
}

/* CTA section */
.section-cta {
  background: linear-gradient(135deg, #1d4ed8, #0f172a);
  color: #f9fafb;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Contact form */
.contact-form {
  max-width: 550px;
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 1px #1d4ed8;
}

.small-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
  background-color: #0f172a;
  color: #e5e7eb;
  padding: 1.75rem 0 2rem;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}

.footer-contact a {
  text-decoration: underline;
}

.footer-copy {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none; /* simple version without mobile menu for now */
  }

  .hero {
    padding: 3rem 0 3.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
