/* ==============================
   GLOBAL RESET & BASE
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #2b2b2b;
  line-height: 1.6;
  background-color: #ffffff;
}

/* ==============================
   HEADER & NAVIGATION
============================== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 🔒 LOGO CONTROL — THIS FIXES YOUR ISSUE */
.site-logo {
  max-height: 44px;   /* FIXED HEADER SIZE */
  width: auto;
  display: block;
}

nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

nav a:hover {
  color: #1e40af;
}

/* CTA Button */
.cta-button {
  background: #1e3a5f;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* ==============================
   HERO SECTION
============================== */
.hero {
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  color: #ffffff;
}

.hero h1 {
  font-size: 42px;
  max-width: 700px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-buttons a {
  margin-right: 14px;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #1e3a5f;
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: #1e3a5f;
}

/* ==============================
   SECTIONS (COMMON)
============================== */
section {
  padding: 70px 40px;
}

section h2 {
  font-size: 34px;
  color: #1f2937;
  margin-bottom: 18px;
}

section p {
  max-width: 900px;
  font-size: 17px;
  color: #4b5563;
}

/* ==============================
   CARDS / GRIDS
============================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* ==============================
   FOOTER (LOCKED FORMAT)
============================== */
footer {
  background: #1e3a5f;
  color: #ffffff;
  text-align: center;
  padding: 28px 20px;
  margin-top: 80px;
}

footer p {
  font-size: 14px;
  line-height: 1.6;
}
