/* General Styles */
body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6f9;
  color: #444;
  line-height: 1.6;
}

header {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  text-align: center;
  padding: 20px 10px;
}

header h1 {
  font-weight: 700;
  font-size: 2.5em;
  margin: 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1em;
}

nav a:hover {
  text-decoration: underline;
}

section {
  margin: 20px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2 {
  font-size: 1.8em;
  color: #2575fc;
  border-bottom: 2px solid #2575fc;
  padding-bottom: 5px;
}

.member {
  margin-bottom: 20px;
}

.member h3 {
  font-size: 1.5em;
  color: #6a11cb;
}

.gallery {
  display: flex;
  gap: 15px;
}

.gallery img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input, form textarea, form button {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

form button {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

form button:hover {
  opacity: 0.9;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}

footer p {
  margin: 0;
}
