:root {
  --ink: #0f172a;
  --muted: #64748b;
  --blue: #62a8ff;
  --bg: #eaf3ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

header {
  padding: 26px 16px;
  background: var(--bg);
}

.logos {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.logos .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 140px;
  background: #fff;
  border: 1px solid #dbe8ff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(98, 168, 255, 0.15);
}

.logos img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 16px 32px;
}

.cta-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  min-width: 300px;
  padding: 16px 18px;
  border-radius: 14px;
  background: white;
  color: #3DA6DB;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(98, 168, 255, 0.25);
  border: 1px solid #bcd9ff;
}

.cta:hover {
  box-shadow: 0 12px 24px rgba(98, 168, 255, 0.35);
}

.cta img {
  height: 150px;
  width: auto;
  object-fit: contain;
  display: block;
}

.cta span {
  display: block;
}

.card {
  background: #fff;
  border: 1px solid #e6eefc;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(42, 120, 255, 0.08);
  max-width: 980px;
  margin: 18px auto 0;
}

.muted {
  color: var(--muted);
}

h1 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  color: var(--ink);
}

h1 + .subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  margin: 24px 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.intro-section {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  margin-top: 96px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.intro-section p {
  line-height: 1.6;
  margin: 12px 0;
  color: var(--ink);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 20px 0;
}

.service-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
}

.service-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
  line-height: 1.8;
}

.service-card li {
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  margin-top: 32px;
}

.cta-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.cta small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}

.faq-section {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-top: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-link {
  color: #3DA6DB;
  font-weight: 600;
  text-decoration: underline;
}

.faq-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  background: #3DA6DB;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .actions-row {
    justify-content: center;
  }
}