/* ============================
   GLOBAL RESET & BASE
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #f7f9fc;
  color: #333;
  line-height: 1.6;
}


/* Global link styling (lighter blue theme) */
a {
  color: #3b7dd8;
  text-decoration: underline;
  font-weight: 600;
}

a:hover {
  color: #2c63ad;
}

/* ============================
   HEADER
   ============================ */
.mps-header {
  background: #ffffff;
  border-bottom: 1px solid #d7dce3;
  padding: 0.5rem 1.5rem;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.site-logo {
  max-height: 95px;
  max-width: 360px;
  height: auto;
  width: auto;
  display: block;
}

/* CONTACT BUTTON */
.contact-link {
  background: #3b7dd8;
  color: #ffffff;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.contact-link:hover {
  background: #2c63ad;
  color: #ffffff;
}

/* ============================
   NAV BAR (DESKTOP)
   ============================ */
.mps-nav {
  background: #3b7dd8;
  border-bottom: 1px solid #2c63ad;
}

.mps-nav .nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.45rem 1.2rem;
  flex-wrap: wrap;
}

.mps-nav a {
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.35px;
  padding: 0.48rem 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}


.mps-nav .separator {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  font-weight: 400;
  padding: 0 0.3rem;
  pointer-events: none;
  user-select: none;

  display: flex;
  align-items: center;
  line-height: 1;
}



.mps-nav a:hover {
  background: #2c63ad;
  color: #ffffff;
}



/* ============================
   FULL-WIDTH HERO SECTION
   ============================ */
.hero-full {
  position: relative;
  width: 100%;
  min-height: 320px;
  background-image: url('../images/watercolor-cityscape.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 1.5rem;
  margin-bottom: 3rem;
  filter: brightness(1.18) contrast(1.06);
  -webkit-filter: brightness(1.18) contrast(1.06);
}

.hero-full .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.30);
  z-index: 1;
}

.hero-full .hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0,0,0,0.28);
  padding: 1.75rem 2.25rem;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-full h1 {
  font-size: 2.3rem;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.55);
}

.hero-full p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}

/* DSPS disclaimer styling */
.hero-content .dsps-note {
  font-size: 0.85rem;
  opacity: 0.75;
  font-style: italic;
  margin-top: 0.5rem;
}

/* ============================
   GRID & CARDS
   ============================ */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #cdd5e0;
  padding: 1.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2c63ad;
}

.card ul {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}

/* === SPACING FIX (applies on desktop + mobile) === */
.card p {
  margin: 0 0 0.9rem;
}

.card p:first-of-type {
  margin-bottom: 1.2rem;
}

.card ul {
  margin-top: 0.6rem;
}

/* ============================
   BUTTONS
   ============================ */
.btn-row {
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary {
  background: #3b7dd8;
  color: #fff;
}

.btn-primary:hover {
  background: #2c63ad;
}

.btn-outline {
  border: 1px solid #3b7dd8;
  color: #3b7dd8;
}

.btn-outline:hover {
  background: #3b7dd8;
  color: #fff;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: #2c63ad;
  color: #ffffff;
  padding: 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
}



/* ============================
   MOBILE OPTIMIZATION
   ============================ */
@media (max-width: 600px) {

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-logo {
    max-width: 190px;
    max-height: 70px;
  }

  .contact-link {
    font-size: 0.78rem;
    padding: 0.28rem 0.55rem;
  }

  .mps-nav .nav-inner {
    padding: 0.35rem 0.8rem;
  }

  .mps-nav a {
    padding: 0.30rem 0.6rem;
    font-size: 0.95rem;
  }

  .hero-full {
    min-height: 180px;
    padding: 1.5rem;
  }

  .hero-full h1 {
    font-size: 1.6rem;
  }

  .hero-full p {
    font-size: 0.95rem;
  }

  .card {
    padding: 1.25rem;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  
 

  
  
}
