:root {
  --primary: #1A73E8;
  --primary-dark: #0D47A1;
  --accent: #00A8A8;
  --bg: #f5f7fb;
  --text: #1f2933;
  --muted: #6b7280;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 20px;        
  padding-bottom: 20px; 
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;   /* Increased vertical padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img img {
  height: auto !important;
  width: 220px !important;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

nav a {
  color: var(--muted);
  font-weight: 500;
}

nav a.active,
nav a:hover {
  color: var(--primary-dark);
}

.main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.hero-text p {
  font-size: 1.02rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e3f2fd;
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid #cbd5f5;
}

.btn-outline:hover {
  background: #e5edff;
}

.hero-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.metric {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f9fafb;
}

.metric span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.metric strong {
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.section {
  margin-bottom: 3rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.section-header p {
  font-size: 0.9rem;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  margin-bottom: 0.5rem;
}

.list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.list li {
  margin-bottom: 0.35rem;
}

.list li::before {
  content: "• ";
  color: var(--accent);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

.highlight {
  background: #e3f2fd;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.footer {
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 1.25rem 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.page-hero {
  margin-bottom: 2rem;
}

.page-hero h1 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 0.95rem;
  color: var(--muted);
}

.faq-item {
  background: var(--white);
  border-radius: 0.9rem;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 0.75rem;
}

.faq-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--primary-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contact-card strong {
  color: var(--primary-dark);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-column,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  nav ul {
    flex-wrap: wrap;
  }
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* FORCE override logo size */
header .logo-img img {
  height: auto !important;
  width: 220px !important;
}

.logo-img {
  display: flex;
  align-items: center;
  margin-right: 28px;   /* This creates the space between logo and HOME */
}
