* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #2b2b2b;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
}

.primary-color {
  color: #ffd369;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar a.active,
.navbar a:hover {
  color: #ffd369;
  border-bottom: 2px solid #ffd369;
}

/* Header */
.involved-header {
  background: url('images/get-involved-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.6);
}

.involved-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.involved-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

/* Involvement Options */
.involve-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.option {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.option .icon {
  font-size: 3rem;
  color: #ffd369;
  margin-bottom: 1rem;
}

.option h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #222;
}

.option p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: #ffd369;
  color: #333;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #ffcd60;
}

/* Footer */
.footer {
  background-color: #2b2b2b;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
}
