:root {
  --blue: #1E293B;
  --orange: #F29C38;
  --slate: #334155;
  --white: #ffffff;
  --bg: #f9fafb;
}

/* GLOBAL */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--slate);
}

/* HEADER */
header {
  background: var(--blue);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo {
  height: 42px;
  width: auto;
  border-radius: 4px;
}

.brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
}

nav a:hover {
  color: var(--orange);
}

/* HERO SECTION */
.hero {
  text-align: center;
  background: linear-gradient(135deg, rgba(44,109,213,0.1), rgba(242,156,56,0.1));
  padding: 70px 20px 60px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.6;
  color: var(--slate);
}

.hero .cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 6px;
}

.hero .cta:hover {
  background: #cf7e23;
}

a.cta.ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

/* GRID */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.card p {
  margin-bottom: 14px;
  color: #475569;
  font-size: 0.95rem;
}

.card a.cta {
  background: var(--blue);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.card a.cta:hover {
  background: var(--orange);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 24px;
  margin-top: 60px;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    margin-top: 10px;
  }
}
.site-logo { height: 40px; width: auto; border-radius: 4px; }
.header-left { display: flex; align-items: center; gap: 10px; }
/* Hero polish */
.hero-home {
  position: relative;
  overflow: hidden;
}
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 400px at 20% -10%, rgba(44,109,213,0.12), transparent 60%),
              radial-gradient(1000px 350px at 85% 0%, rgba(242,156,56,0.10), transparent 60%);
  pointer-events: none;
}
.hero-inner h1 { letter-spacing: 0.2px; }
.hero-actions .cta { box-shadow: 0 2px 10px rgba(0,0,0,.06); }
/* === Global Breadcrumb Styling === */
.breadcrumbs {
  margin: 12px 0 16px;
  font: 600 14px/1.4 Nunito, sans-serif;
  color: #475569; /* dark gray for separators and non-link text */
}

.breadcrumbs a {
  color: #1e293b; /* darker slate gray for links */
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: #2563eb; /* your blue accent on hover */
  text-decoration: underline;
}
