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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #0f3460;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
}

.logo-icon {
  flex-shrink: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-graphic {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(74, 159, 245, 0.2);
  border: 1px solid rgba(74, 159, 245, 0.4);
  color: #8CC5FF;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  color: #b0c4de;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: inline-block;
  background: #4A9FF5;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta:hover {
  background: #3A8FE5;
  transform: translateY(-2px);
  color: #fff;
}

/* Sections */
.section {
  padding: 5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.section.alt {
  max-width: 100%;
  background: #f4f6f9;
}

.section.alt > * {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0f3460;
}

.section p {
  font-size: 1.1rem;
  color: #444;
}

/* About Layout */
.about-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.about-graphic {
  flex: 0 0 280px;
}

.about-graphic svg {
  width: 100%;
  height: auto;
}

.about-text {
  flex: 1;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

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

.card-icon {
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 56px;
  height: 56px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #0f3460;
}

.card p {
  font-size: 1rem;
  color: #555;
}

/* Contact */
.contact-layout {
  max-width: 500px;
  margin: 0 auto;
}

.contact-email {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-email a {
  color: #0f3460;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #4A9FF5;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.contact-email a:hover {
  color: #4A9FF5;
}

/* Page Content (legal pages) */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-content h1 {
  font-size: 2.2rem;
  color: #0f3460;
  margin-bottom: 0.5rem;
}

.page-content h2 {
  font-size: 1.4rem;
  color: #0f3460;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content h3 {
  font-size: 1.15rem;
  color: #333;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.page-content p,
.page-content li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.75rem;
}

.page-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content a {
  color: #0f3460;
  text-decoration: underline;
}

.effective-date {
  font-style: italic;
  color: #777 !important;
  margin-bottom: 1.5rem !important;
}

/* Footer */
footer {
  background: #0f3460;
  color: #aaa;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
}

.footer-links {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .about-layout {
    flex-direction: column;
    text-align: center;
  }

  .about-graphic {
    flex: none;
    width: 220px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-content {
    padding: 4rem 1.5rem;
  }

  nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  nav ul {
    gap: 1rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }
}
