/* Import Cloudflare Fonts (or fallback to Google Fonts if not enabled in Cloudflare) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@600;700&display=swap');

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  color: #0a3d62; /* modern deep blue */
  margin-top: 0;
}

a { text-decoration: none; color: inherit; }

/* Layout */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* Header */
header {
  background: #0a3d62;
  padding: 1rem 0;
  color: #fff;
}
.logo { font-weight: 600; font-size: 1.5rem; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { color: #fff; font-weight: 500; }
.nav-links a.active { border-bottom: 2px solid #f8c291; }

/* Hero */
.hero {
  background: linear-gradient(rgba(10,61,98,0.85), rgba(10,61,98,0.85)),
              url('https://picsum.photos/1200/500?blur=3') no-repeat center/cover;
  color: #fff;
  padding: 6rem 1rem;
  text-align: center;
}
.hero.small { padding: 3rem 1rem; }
.hero h2 { font-size: 2rem; margin-bottom: 1rem; }
.hero p { margin-bottom: 1.5rem; }
.cta-btn {
  display: inline-block;
  background: #38ada9;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}
.cta-btn:hover { background: #079992; }

/* Services */
.services { padding: 3rem 0; text-align: center; }
.services h3 { margin-bottom: 2rem; font-size: 1.8rem; color: #0a3d62; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.card { background: #f4f6f7; padding: 1.5rem; border-radius: 8px; }

/* FAQ */
.faq { padding: 3rem 0; }
.faq-item { margin-bottom: 1.5rem; }
.faq-item h4 { color: #0a3d62; margin-bottom: 0.5rem; }

/* Contact */
.contact { padding: 3rem 0; }
.contact-info { margin-bottom: 2rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form button { width: 100%; }

/* Footer */
footer {
  background: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
footer a { color: #f8c291; }
