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

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

/* Nav */
nav {
  background: #0f3460;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

nav .logo img {
  height: 38px;
  width: auto;
}

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

nav ul a {
  color: #cdd5e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav ul a:hover { color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem 5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero h1 span { color: #e94560; }

.hero p {
  font-size: 1.2rem;
  color: #b0bec5;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  background: #e94560;
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover { background: #c73652; transform: translateY(-1px); }

/* Services */
.services {
  padding: 5rem 2rem;
  background: #f8f9fa;
  text-align: center;
}

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

.services .sub {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  flex: 1 1 260px;
  max-width: 320px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: left;
}

.card .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

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

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

/* About snippet / generic section */
.section {
  padding: 5rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

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

.section p { color: #444; margin-bottom: 1rem; }

/* Page header (inner pages) */
.page-header {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  color: #fff;
  padding: 3.5rem 2rem;
  text-align: center;
}

.page-header h1 { font-size: 2.4rem; font-weight: 800; }
.page-header p { color: #b0bec5; margin-top: 0.5rem; }

/* Info table (about page) */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.info-table tr { border-bottom: 1px solid #eee; }
.info-table td { padding: 0.75rem 0.5rem; font-size: 0.95rem; }
.info-table td:first-child { color: #666; width: 200px; }
.info-table td:last-child { font-weight: 600; color: #1a1a2e; }

/* Policy content */
.policy h3 {
  font-size: 1.15rem;
  color: #0f3460;
  margin: 2rem 0 0.5rem;
}

.policy p, .policy ul { color: #444; margin-bottom: 0.8rem; }
.policy ul { padding-left: 1.4rem; }
.policy ul li { margin-bottom: 0.4rem; }

/* Footer */
footer {
  background: #0f3460;
  color: #8fa3b1;
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.88rem;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

footer .footer-links a { color: #cdd5e0; text-decoration: none; transition: color 0.2s; }
footer .footer-links a:hover { color: #fff; }

footer p { margin-bottom: 0.3rem; }
