/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: #f8f9fc; /* soft light background */
  color: #333;
}

/* Container */
.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  padding: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #002b80; /* dark navy header for contrast */
  padding: 25px 20px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  color: #fff;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-placeholder {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  border-radius: 50%; /* perfect circle */
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  color: #002b80;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.header-text h1 {
  font-size: 32px;
  font-weight: 700;
  color: #ffcc00;
}

.header-text p {
  font-size: 16px;
  font-weight: 500;
  color: #e0e0e0;
}

/* Nav */
nav {
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #ffcc00;
}

/* Nav list - Desktop */
.nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  background: #002b80; /* dark background for better visibility */
  padding: 10px 15px;
  border-radius: 8px;
}

.nav-list li a {
  color: #ffcc00;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: 0.3s;
}

.nav-list li a:hover {
  background-color: #ffd700; /* hover contrast */
  color: #002b80;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #002b80; /* blue headings */
}

section p, section ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

ul li {
  margin-left: 10px;
}

/* CTA section */
#cta {
  background: linear-gradient(135deg, #002b80, #003c99);
  padding: 50px 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#cta h2 {
  color: #ffd700 !important; /* yellow CTA heading */
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.call-btn, .email-btn {
  background-color: #ffcc00;
  color: #002b80;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-btn:hover, .email-btn:hover {
  background-color: #ffe066;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255,204,0,0.7);
}

/* Footer */
footer {
  text-align: center;
  color: #ffd95a;
  background: #002b80;
  padding: 20px;
  border-top: 3px solid #ffd95a;
  font-size: 14px;
}

/* Mobile */
@media(max-width:768px){

  .header-container { flex-wrap: nowrap; }
  .logo-placeholder { width: 60px; height: 60px; } /* smaller circle on mobile */
  .header-text h1 { font-size: 22px; }
  .header-text p { font-size: 12px; }

  .menu-toggle { display: block; }

  .nav-list {
    display: none;
    flex-direction: column;
    background: #002b80;
    position: absolute;
    top: 100%;
    right: 0;
    width: 160px;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.35);
  }

  .nav-list.active { display: flex; }

  .nav-list li {
    text-align: right;
    margin: 8px 0;
  }

  section h2 {
    font-size: 22px;
    color: #002b80; /* blue on mobile */
  }

  #cta h2 {
    font-size: 20px;
    color: #ffd700 !important; /* yellow on mobile */
  }

  #cta {
    flex-direction: column;
    gap: 12px;
    padding: 25px 15px;
  }

  .cta-buttons { flex-direction: column; width: 100%; align-items: center; }
  .call-btn, .email-btn { width: 160px; font-size: 15px; padding: 12px 0; }
}
