
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #1f2933;
  line-height: 1.7;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img { height: 70px; }

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #1f2933;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.hero {
  background: #f1f5f9;
  padding: 90px 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #0a3d78;
}

h1 {
  font-size: 46px;
  margin-bottom: 15px;
}

h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 15px;
}

h3 {
  font-family: 'Playfair Display', serif;
  color: #0a3d78;
  font-size: 22px;
}

p {
  font-size: 17px;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  background: #0a3d78;
  color: white;
  padding: 15px 32px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  transition: all .25s ease;
}

.btn:hover {
  background: #062c55;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

section {
  padding: 80px 60px;
  max-width: 1200px;
  margin: auto;
}

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

.card {
  border: 1px solid #e5e7eb;
  padding: 35px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

footer {
  background: #0a3d78;
  color: white;
  padding: 50px 60px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

form input, form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #cbd5e1;
  font-family: 'Inter', sans-serif;
}

form button {
  background: #0a3d78;
  color: white;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: all .25s ease;
}

form button:hover {
  background: #062c55;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.center {
  text-align: center;
}


/* === LOGO SIZE REFINEMENT (SMALLER & ELEGANT) === */

/* Header logo */
header img {
  max-height: 48px;
  width: auto;
}

/* Hero logo */
.hero img {
  max-width: 220px;
  margin: 0 auto 20px;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  header img {
    max-height: 36px;
  }
  .hero img {
    max-width: 120px;
  }
}
