/* Global */

* {
  box-sizing: border-box;
}

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

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* Header */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo-and-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 200px;
  width: auto;
  border-radius: 8px;
}


.site-title-group {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.site-tagline {
  font-size: 0.85rem;
  color: #6b7280;
}

.site-nav {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: #374151;
}

.site-nav a:hover {
  color: #111827;
}

/* Hero */

.hero {
  background: #e5f0ff;
  border-bottom: 1px solid #d1d5db;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 16px 48px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #374151;
  max-width: 640px;
}

.hero-list {
  margin: 16px 0 24px;
  padding-left: 20px;
  color: #4b5563;
}

.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: #1d4ed8;
}

/* Sections */

.section {
  padding: 40px 0 32px;
}

.section h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.section p {
  color: #374151;
  line-height: 1.6;
}

.section-alt {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

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

.card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Steps */

.steps {
  margin: 0;
  padding-left: 18px;
  color: #374151;
}

.steps li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Contact */

.contact-email {
  margin-top: 12px;
  font-size: 1.05rem;
}

.contact-email a {
  color: #2563eb;
  text-decoration: none;
}

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

/* Footer */

.site-footer {
  text-align: center;
  padding: 16px;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive tweaks */

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

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