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

/* ========== BASE ========== */
body {
  font-family: system-ui, sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* ========== HEADER ========== */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.2rem 0;
  padding-bottom: 0;
  padding-top: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 100px;
  margin-top: 4px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.4rem;
}

.nav-list a {
  text-decoration: none;
  font-weight: 500;
  color: #333333;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #0066cc;
}

/* ========== HERO ========== */
.hero {
  background-color: #f3faff;
  padding: 3.5rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}

.btn {
  background-color: #0066cc;
  color: white;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #004999;
}

/* ========== SECTIONS ========== */
.highlights,
.learn-more {
  padding: 2.5rem 0;
  text-align: center;
}

.highlights h3,
.learn-more h3 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.btn-secondary {
  background-color: #eeeeee;
  color: #333333;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  display: inline-block;
  margin-top: 1rem;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: #dddddd;
}

/* ========== FOOTER ========== */
footer {
  background-color: #fafafa;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.9rem;
  color: #777;
}

.white-paper,
.focus-areas,
.signup {
  padding: 2.5rem 0;
  text-align: center;
}

.white-paper p,
.signup p {
  max-width: 700px;
  margin: 0 auto 1rem auto;
}

.focus-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.focus-list li {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 1.5rem auto 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button {
  align-self: flex-start;
}

/* ========== SOCIAL ICONS ========== */
.social-icons a {
  display: inline-block;
  text-decoration: none;
}

/* .social-icons img {
  height: 32px;
  width: 32px;
  margin-right: 1rem;
  transition: opacity 0.2s ease;
}

.social-icons img:hover {
  opacity: 0.7;
} */

.icon-instagram {
  height: 48px;
  width: 48px;
  margin-right: 1rem;
  transition: opacity 0.2s ease;
  margin-bottom: -8px;
}

.icon-linkedin {
  height: 32px;
  width: 32px;
  transition: opacity 0.2s ease;
}

.icon-instagram:hover,
.icon-linkedin:hover {
  opacity: 0.7;
}

/* Subtle styling for new Get Involved sections */

.whatsapp,
.volunteer,
.future-contact-form {
  padding: 2.5rem 0;
}

.whatsapp h3,
.volunteer h3,
.future-contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #222;
}

.whatsapp p,
.volunteer p,
.future-contact-form p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.volunteer ul.focus-list {
  list-style: disc;
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.volunteer ul.focus-list li {
  margin-bottom: 0.5rem;
}
 
/* Ensure mobile responsiveness */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li a {
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: block;
  color: #000;
}

/* Optional: Stack nav links vertically on small screens */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    width: 100%;
  }
}
