* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #ff0000;
  --primary-blue: #00ccff;
  --primary-yellow: #ffcc00;
  --dark: #333;
  --light: #f5f5f5;
  --white: #fff;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.top-bar {
  background: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s;
}

.social-links a:hover img {
  transform: scale(1.1);
}

.logo {
  text-align: center;
}

.logo img {
  max-width: 400px;
  width: 100%;
}

.donate-quick {
  text-align: center;
}

.donate-quick p {
  color: var(--dark);
  font-size: 14px;
}

.donate-quick a {
  color: var(--primary-blue);
  font-weight: bold;
}

/* Navigation */
.main-nav {
  background: linear-gradient(135deg, #6a0dad, #8b5cf6);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  color: var(--white);
  font-weight: 500;
  transition: background 0.3s;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #5b0ea8;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 8px 8px;
}

.main-nav li:hover .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu a {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav .dropdown-menu li:last-child a {
  border-bottom: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  padding: 10px 20px;
  cursor: pointer;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background: var(--white);
}

/* Stats Section */
.stats-section {
  background: var(--white);
  padding: 40px 0;
}

.stats-intro {
  text-align: center;
  margin-bottom: 30px;
}

.stats-intro img {
  width: 80px;
  margin-bottom: 10px;
}

.stats-intro h2 {
  color: var(--primary-red);
  font-size: 28px;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}

.stats-intro p {
  font-size: 18px;
  margin-top: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.stat-card {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card img {
  width: 80px;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 42px;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}

.stat-card:nth-child(1) .stat-number { color: var(--primary-blue); }
.stat-card:nth-child(2) .stat-number { color: var(--primary-yellow); }
.stat-card:nth-child(3) .stat-number { color: var(--primary-red); }
.stat-card:nth-child(4) .stat-number { color: var(--primary-blue); }

.stat-label {
  font-size: 16px;
  margin-top: 10px;
}

.stat-cost {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/* Counties Banner */
.counties-banner {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.counties-banner em {
  font-size: 22px;
  color: var(--dark);
}

/* Newsletter Section */
.newsletter-section {
  background: var(--white);
  padding: 30px 0;
  text-align: center;
}

.newsletter-section img {
  max-width: 100%;
  height: auto;
  margin: 10px;
  border-radius: 8px;
}

/* Info Section */
.info-section {
  background: var(--light);
  padding: 60px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.info-block h3 {
  font-size: 22px;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.info-block:nth-child(1) h3 { color: var(--primary-red); border-bottom: 3px solid var(--primary-red); }
.info-block:nth-child(2) h3 { color: var(--primary-blue); border-bottom: 3px solid var(--primary-blue); }
.info-block:nth-child(3) h3 { color: var(--primary-yellow); border-bottom: 3px solid var(--primary-yellow); }

.info-block p {
  font-size: 16px;
  line-height: 1.8;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #6a0dad, #8b5cf6);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* Content Section */
.content-section {
  background: var(--white);
  padding: 60px 0;
}

.content-section .container {
  max-width: 900px;
}

.content-section h2 {
  color: var(--primary-red);
  font-size: 26px;
  margin: 30px 0 15px;
}

.content-section h3 {
  color: var(--primary-blue);
  font-size: 22px;
  margin: 25px 0 12px;
}

.content-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.content-section ul {
  margin: 15px 0 15px 30px;
  list-style: disc;
}

.content-section li {
  margin-bottom: 8px;
}

/* Staff Grid */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.staff-card {
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.staff-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 20px auto;
  display: block;
  border: 4px solid var(--primary-blue);
}

.staff-card h3 {
  text-align: center;
  color: var(--primary-red);
  font-size: 20px;
  margin-bottom: 5px;
}

.staff-card .position {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.staff-card .bio {
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.7;
}

/* Board Grid */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.board-card {
  background: var(--light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
}

.board-card h4 {
  color: var(--primary-red);
  font-size: 18px;
  margin-bottom: 5px;
}

.board-card .organization {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

.board-card .term {
  font-size: 12px;
  color: #888;
}

/* Location Grid */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.location-card {
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.location-card .location-info {
  padding: 20px;
}

.location-card h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.location-card p {
  line-height: 1.6;
}

.location-card a {
  color: var(--primary-red);
  font-weight: 500;
}

/* Donation Methods */
.donation-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.donation-method {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.donation-method img {
  width: 80px;
  margin-bottom: 15px;
}

.donation-method h3 {
  color: var(--primary-red);
  margin-bottom: 10px;
}

/* Wish List Categories */
.wishlist-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.wishlist-category {
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
}

.wishlist-category img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.wishlist-category ul {
  padding: 15px 20px;
}

.wishlist-category li {
  padding: 5px 0;
  font-size: 14px;
}

/* Events Section */
.events-grid {
  margin-top: 30px;
}

.event-card {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-blue);
}

.event-card h3 {
  color: var(--primary-red);
  margin-bottom: 10px;
}

.event-card .date {
  color: var(--primary-blue);
  font-weight: bold;
  margin-bottom: 10px;
}

/* Prevention Stats */
.prevention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.prevention-card {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
}

.prevention-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.prevention-card h3 {
  color: var(--primary-red);
  margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 30px auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #6a0dad, #8b5cf6);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(106, 13, 173, 0.4);
}

/* Partners */
.partners-section {
  background: var(--light);
  padding: 40px 0;
  margin-top: 40px;
}

.partners-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-red);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partners-grid img {
  height: 60px;
  width: auto;
  transition: transform 0.3s;
}

.partners-grid a:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #6a0dad, #8b5cf6);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-block h4 {
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-block p {
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-block a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer-block a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .main-nav ul.active {
    display: flex;
  }

  .main-nav .dropdown-menu {
    position: static;
    background: #4a0c84;
    border-radius: 0;
  }

  .mobile-menu-toggle {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-slider {
    height: 250px;
  }

  .stats-intro h2 {
    font-size: 22px;
  }

  .stat-number {
    font-size: 32px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .staff-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 280px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}
