/* Volunteer page styles */

.nav-link-active {
  color: var(--accent) !important;
}

/* Hero */
.vol-hero {
  padding: 80px 0;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.vol-hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.vol-hero p {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* How section */
.vol-how {
  padding: 80px 0;
}

/* Why section */
.vol-why {
  padding: 80px 0;
  background: var(--surface);
}

.vol-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 8px;
}

.vol-reason {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vol-reason-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.vol-reason h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.vol-reason p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact section */
.vol-contact {
  padding: 80px 0;
}

.vol-contact-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.vol-contact-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vol-contact-box > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.vol-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.vol-phone-label {
  font-size: 14px;
  color: var(--text-muted);
}

.vol-phone-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.vol-phone-number:hover {
  color: var(--accent-hover);
}

.vol-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.vol-email-address {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

.vol-email-address:hover {
  color: var(--accent-hover);
}

/* Responsive */
@media (max-width: 768px) {
  .vol-hero h1 {
    font-size: 36px;
  }

  .vol-hero p {
    font-size: 17px;
  }

  .vol-contact-box h2 {
    font-size: 26px;
  }

  .vol-phone-number {
    font-size: 22px;
  }
}
