:root {
  --bg: #ffffff;
  --text: #2b2b2b;
  --muted: #505864;
  --brand: #0f1f4a;
  --brand-dark: #0a1532;
  --accent: #f2c94c;
  --border: #d9dfe7;
  --surface: #f7f9fc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--brand-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--brand);
  color: #fff;
  display: inline-block;
}

.site-header {
  background: var(--brand);
  border-bottom: 1px solid var(--brand-dark);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.brand img {
  height: 15vh;
  width: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-inner nav {
  margin-left: auto;
}

.nav-item {
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
}

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

.nav-links a:hover,
.nav-links a:focus {
  color: #fff;
  text-decoration: underline;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--brand);
  border: 1px solid var(--brand-dark);
  border-radius: 12px;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  min-width: 240px;
  box-shadow: 0 12px 24px rgba(10, 21, 50, 0.2);
  display: none;
  z-index: 20;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.45rem 1rem;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.dropdown-menu a.active {
  color: var(--accent);
  background: rgba(242, 201, 76, 0.18);
  font-weight: 600;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  display: block;
}

.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.section-actions {
  text-align: center;
  padding-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
}

.button:hover,
.button:focus {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--accent);
}

.button.secondary:hover,
.button.secondary:focus {
  background: #e6b93d;
  border-color: #e6b93d;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--surface);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.card-cta {
  background: #F2C94C;
  color: #0B1B3A;
  font-weight: 600;
  padding: 0.6em 1.2em;
  border-radius: 4px;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin: 0 auto;
  transition: background 0.2s ease;
}

.card-cta:hover {
  background: #e0b93c;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card-media {
  position: relative;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 27, 58, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .img-overlay {
  opacity: 1;
}

.service-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-content .card-cta {
  margin-top: auto;
}

.service-card-content h2 {
  margin-top: 0;
  color: var(--brand);
}

.card h3 {
  margin-top: 0;
  color: var(--brand);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  margin-bottom: 0.65rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1rem;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 2.5rem 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.highlight {
  background: #fff5d6;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: #6a5100;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 3rem 0 2rem;
  }
}
