:root {
  --primary: #0b3a5f;
  --primary-light: #2e6f9e;
  --accent: #6faad6;
  --bg-light: #f5f9fd;
  --text-dark: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background: #ffffff;
  color: var(--text-dark);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-content {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  font-weight: 500;
  color: #334155;
}

nav a:hover {
  color: var(--primary);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0b3a5f, #144f7c);
  color: #ffffff;
  padding: 96px 0;
}

.hero-content {
  display: flex;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.primary-btn {
  background: var(--accent);
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 999px;
  cursor: pointer;
}

.primary-btn:hover {
  background: #5b9bc8;
}

/* SERVICES */
.services {
  background: var(--bg-light);
  padding: 96px 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.services-text h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.services-text p {
  max-width: 480px;
  color: #475569;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.services-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .services-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-image img {
    margin: 32px auto 0;
  }
}

/* CARDS */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #64748b;
}

.card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}