* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0b3d91;
  --primary-dark: #072b66;
  --accent: #1e5eff;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f7f9fc;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-btn {
  background: var(--primary);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 700;
}

.nav-btn:hover {
  background: var(--primary-dark);
}

.hero {
  background: linear-gradient(135deg, #0b3d91, #0a58ca);
  color: var(--white);
  padding: 90px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  margin: 10px 0;
  padding-left: 22px;
  position: relative;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
}

.btn-primary:hover {
  background: #eaf1ff;
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

.page-hero {
  background: linear-gradient(135deg, #0b3d91, #0a58ca);
  color: var(--white);
  padding: 70px 0;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 18px;
  max-width: 780px;
  color: rgba(255,255,255,0.92);
}

.section {
  padding: 70px 0;
}

.section-light {
  background: var(--bg);
}

.section-title {
  text-align: center;
  margin-bottom: 18px;
  font-size: 36px;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
  color: var(--muted);
  font-size: 17px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 22px;
}

.card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.card ul {
  list-style: none;
  margin-top: 10px;
}

.card ul li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #edf3ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 800;
}

.checklist {
  list-style: none;
  margin-top: 15px;
}

.checklist li {
  margin: 10px 0;
  padding-left: 24px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: bold;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.project-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 24px;
}

.project-meta {
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.cta {
  background: linear-gradient(135deg, #0b3d91, #0a58ca);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.cta p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.92);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.info-box h3 {
  color: var(--primary);
  margin-bottom: 14px;
}

.info-item {
  margin: 16px 0;
}

.footer {
  background: #081a3a;
  color: #dbe7ff;
  padding: 26px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer a {
  color: #dbe7ff;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-grid,
  .split,
  .contact-grid,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }

  .page-hero h1,
  .section-title,
  .cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero {
    padding: 70px 0 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }
}


.logo img {
  display: block;
  height: 54px;
  width: auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 520px;
}

.footer-brand img {
  height: 52px !important;
  width: auto !important;
  max-width: 180px !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  display: block !important;
}

.brand-caption {
  font-size: 14px;
  line-height: 1.45;
}

.site-note {
  background: #eef4ff;
  border: 1px solid #d8e4ff;
  color: #25406a;
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 26px;
  font-size: 15px;
}

.page-brand {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.page-brand img {
  height: 84px;
  width: auto;
}

@media (max-width: 768px) {
  .logo img { height: 42px; }
  .footer-brand { align-items: flex-start; }
  .page-brand img { height: 64px; }
}


.brand-mark {
  display: inline-flex;
  align-items: center;
}

.header-logo {
  max-height: 64px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 52px !important;
  width: auto !important;
  display: non !important;
}
