/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #f4f4f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #cc0000, #6a0dad);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

header .logo-container {
  display: inline-block;
  background: white;
  border-radius: 50%;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

header .logo {
  width: 100px;
  height: auto;
  display: block;
}

header h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0 0.3rem;
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Intro */
.intro {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.intro h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #444;
}

/* Fundraisers Section */
.fundraisers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #555;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
}

.pmc .button {
  background: #cc0000;
}

.pmc .button:hover {
  background: #990000;
}

.alz .button {
  background: #6a0dad;
}

.alz .button:hover {
  background: #4b0082;
}

/* Footer */
footer {
  margin: 3rem 0 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
