* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif,serif;
}

body {
    background-color: #f4f9f4;
    color: #2c3e50;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2e7d32;
    padding: 15px 30px;
}

nav h1 {
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(#4caf50, #81c784);
    color: white;
}

.hero button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background-color: #2e7d32;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

/* Sections */
section {
    padding: 60px 30px;
    text-align: center;
}

.event-list {
    list-style: none;
    margin-top: 20px;
}

.event-list li {
    margin: 10px 0;
    font-size: 18px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 20px auto;
}

input, button {
    padding: 10px;
    font-size: 16px;
}

button {
    background-color: #4caf50;
    color: white;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 15px;
}
.form-container {
  max-width: 700px;
  margin: 30px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0,1);
}
.why-join {
    max-width: 700px;
    margin: 30px auto;
    text-align: left;
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 10px;
}

.why-join h3 {
    text-align: center;
    margin-bottom: 15px;
}

.why-join ul {
    list-style: none;
    padding-left: 0;
}

.why-join li {
    margin: 10px 0;
    font-size: 17px;
}
