/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  scroll-behavior: smooth;
}

nav {
  position: sticky;
  top: 0;
  background: #3b82f6;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  z-index: 1000;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #dbeafe;
}

header, footer, section {
  padding: 20px;
  text-align: center;
}

header {
  background: #bfdbfe;
  transition: background 0.3s ease;
}

header:hover {
  background: #93c5fd;
}

footer {
  background: #bfdbfe;
  font-size: 14px;
}

.areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 20px auto;
}

.card, .testimonial {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.button:hover {
  background: #2563eb;
}

form input, form button {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #3b82f6;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #2563eb;
}

/* New styles for Contact Us and Get Involved sections side by side */
.contact-involved {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 20px auto;
  flex-wrap: wrap;
}

.small-box {
  flex: 1 1 300px;
  max-width: 400px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-us {
  text-align: left;
}

.get-involved {
  text-align: left;
}

@media (max-width: 768px) {
  .contact-involved {
    flex-direction: column;
    align-items: center;
  }
}
