* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
}

header {
  background: #0f172a;
  color: white;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: white;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 18px;
  font-size: 15px;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: white;
  padding: 80px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero p {
  font-size: 18px;
  max-width: 720px;
  margin-bottom: 28px;
  color: #e2e8f0;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.hero-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 20px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
}

.hero-card li {
  margin-bottom: 10px;
  color: #f8fafc;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: none;
}

.btn-primary {
  background: white;
  color: #0f172a;
}

.btn-secondary {
  background: #22c55e;
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.section p.lead {
  color: #4b5563;
  max-width: 760px;
  margin-bottom: 28px;
}

.search-box {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  margin-top: -35px;
  position: relative;
  z-index: 2;
}

.search-box input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 16px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: #4b5563;
}

.card a {
  display: inline-block;
  margin-top: 14px;
  text-decoration: none;
  font-weight: 700;
  color: #1d4ed8;
}

.category-box {
  background: white;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.highlight {
  background: #e0f2fe;
  border-left: 5px solid #0284c7;
  padding: 18px;
  border-radius: 10px;
}

.cta-box {
  background: linear-gradient(135deg, #1d4ed8, #0f172a);
  color: white;
  border-radius: 20px;
  padding: 35px;
}

.cta-box h2 {
  margin-top: 0;
  color: white;
}

.cta-box p {
  color: #dbeafe;
}

.footer {
  background: #0f172a;
  color: white;
  padding: 28px 0;
  margin-top: 40px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer p {
  margin: 0;
  font-size: 14px;
  color: #cbd5e1;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  margin-left: 14px;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.page-header {
  background: #e2e8f0;
  padding: 45px 0;
}

.page-header h1 {
  margin: 0;
  font-size: 36px;
}

.content {
  padding: 45px 0;
}

.content-box {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.contact-box {
  background: #f8fafc;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 18px;
  margin-top: 20px;
}

ul {
  padding-left: 20px;
}

.small-note {
  font-size: 14px;
  color: #64748b;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  nav a {
    margin-left: 0;
    margin-right: 14px;
  }

  .section h2 {
    font-size: 28px;
  }
}