/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #f0faff;
  color: #222;
  line-height: 1.6;
}

/* ---------- Header ---------- */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  max-height: 90px;
  width: auto;
}

/* Navigation */
nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul.nav-links li a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a:focus {
  color: #004a99;
  background-color: rgba(0,74,153,0.15);
  box-shadow: 0 0 8px rgba(0,74,153,0.4);
  border: 1px solid #004a99;
  outline: none;
}

nav ul.nav-links li a.active {
  color: #004a99;
  background-color: rgba(0,74,153,0.2);
  box-shadow: 0 0 10px rgba(0,74,153,0.5);
  border: 1px solid #004a99;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 22px;
    z-index: 1001;
  }

  nav ul.nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    background: #fff;
    width: 75%;
    height: 100vh;
    padding: 30px 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .logo img {
    max-height: 55px;
    width: auto;
  }

  nav ul.nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  nav ul.nav-links li {
    margin-bottom: 20px;
  }
}

/* FAQ Hero Section */
.faq-hero {
  max-width: 900px;
  margin: 80px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.faq-hero h1 {
  font-size: 3rem;
  color: #00aaff;
  margin-bottom: 12px;
}

.faq-hero p {
  font-size: 1.2rem;
  color: #555;
}

/* FAQ Container */
.faq-container {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-card {
  background: #fff;
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,174,239,0.05);
  cursor: default;
  transition: box-shadow 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 14px 30px rgba(0,174,239,0.15);
}

.faq-card h3 {
  color: #004a99;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 1.25rem;
}

.faq-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

/* Call to Action Section */
.cta-section {
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 40px 20px;
  background-color: #f0f8ff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,174,239,0.05);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d192b;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
}

/* Stylish CTA Button */
.btn-primary {
  padding: 16px 42px;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00aaff, #007acc);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0,170,255,0.25);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #004a99, #0066cc);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,74,153,0.35);
  outline: none;
}

/* ---------- Footer ---------- */
footer {
  background-color: #001f3f;
  color: #aad8ff;
  font-family: 'Outfit', sans-serif;
  padding: 40px 20px 20px;
  font-size: 16px;
  user-select: none;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-col h3 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #50aaff;
}

/* Footer nav */
footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer nav ul li {
  margin-bottom: 14px;
}

footer nav ul li a {
  color: #aad8ff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

footer nav ul li a:hover,
footer nav ul li a:focus {
  color: #50aaff;
  transform: translateX(6px);
  outline: none;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #003366;
  color: #aad8ff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(80,170,255,0.3);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover,
.social-icons a:focus {
  background-color: #50aaff;
  color: #001f3f;
  transform: scale(1.15);
  outline: none;
  box-shadow: 0 0 14px #50aaff;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 32px;
  border-top: 1px solid #003366;
  padding-top: 14px;
  font-size: 14px;
  color: #6699cc;
}
