* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #0b2c4d;
}

/* NAVBAR */
.navbar {
  background: white;
  border-bottom: 1px solid #ddd;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1100px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  width: 100px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #0b2c4d;
  font-weight: bold;
}

/* HERO */
.hero {
  background: #0b2c4d;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 36px;
}

.hero p {
  margin: 10px 0;
  font-size: 20px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #1e7f3f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
}

.section.light {
  background: #f4f4f4;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #0b2c4d;
  color: white;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  border: none;
  cursor: pointer;
}

/* PAGE TITLES */
h1 {
  margin-bottom: 20px;
}

/* TEXT SPACING */
p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* LEADERSHIP CARDS */
.card h3 {
  margin-bottom: 10px;
  color: #0b2c4d;
}

/* EVENTS */
.card p {
  font-size: 14px;
}

/* CONTACT FORM */
form {
  max-width: 500px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #1e7f3f;
}

form button {
  background: #1e7f3f;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #166530;
}

/* SECTION HEADINGS */
.section h2 {
  margin-bottom: 20px;
}

/* IMPROVE GRID SPACING */
.grid {
  margin-top: 20px;
}

/* FOOTER IMPROVEMENT */
footer p {
  font-size: 14px;
}

/* ========================= */
/* MOBILE RESPONSIVENESS */
/* ========================= */

@media (max-width: 768px) {

  /* NAVBAR STACK */
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  nav ul li {
    margin: 10px 0;
  }

  /* HERO TEXT */
  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 16px;
  }

  /* SECTIONS */
  .section {
    padding: 40px 15px;
  }

  /* GRID STACK */
  .grid {
    grid-template-columns: 1fr;
  }

  /* LOGO */
  .logo {
    width: 80px;
    margin-bottom: 10px;
  }

  /* BUTTON FULL WIDTH */
  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE MENU */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.active {
    display: block;
  }
}

/* MEMBERSHIP FORM */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* BUTTON IMPROVEMENT */
.btn {
  background: #1e7f3f;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background: #166530;
}