body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
header {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  background: white;
}

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

.logo {
  height: 105px;
}

/* NAV */
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #2a5c9a;
  font-weight: 500;
  transition: 0.2s;
}

nav a:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  padding: 110px 0;
  text-align: center;
  background: linear-gradient(to bottom, #f7f9fc, #ffffff);
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* BUTTON */
.btn {
  padding: 12px 26px;
  background: #2a5c9a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s;
}

.btn:hover {
  background: #1f4a80;
}

/* SERVICES */
.services {
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
}

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

.card {
  padding: 30px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  font-weight: 500;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* PAGE */
.page {
  padding: 80px 0;
}

.page p {
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  border-top: 1px solid #eee;
  margin-top: 40px;
  color: #777;
}