.hero-section {
  background: linear-gradient(135deg, #00d37b, #a8e063);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  border-radius: 15px;
}

.hero-section h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-button {
  background: white;
  color: #00d37b;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 500px;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #00b26b;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 500px;
  color: #00d37b;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* New Scrollable Programs Section */
.programs-section {
  margin: 4rem 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.programs-header {
  background: linear-gradient(135deg, #00d37b, #a8e063);
  color: white;
  padding: 2rem;
  text-align: center;
}

.programs-header h2 {
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.programs-content {
  background: #f8f9fa;
  height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}

.programs-cards {
  padding: 2rem;
  background: #f8f9fa;
}

.programs-data {
  padding: 10rem;
  background: white;
  border-top: 1px solid #e9ecef;
}

.programs-cards,
.programs-data {
  flex: none;
  overflow: visible;
}

.programs-cards::-webkit-scrollbar {
  width: 8px;
}

.programs-cards::-webkit-scrollbar-track {
  background: #e9ecef;
  border-radius: 10px;
}

.programs-cards::-webkit-scrollbar-thumb {
  background: #00d37b;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.programs-cards::-webkit-scrollbar-thumb:hover {
  background: #00b26b;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.program-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #00d37b;
}

.program-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(45deg, #00d37b, #a8e063);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.program-content {
  padding: 1.5rem;
}

.program-title {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.program-description {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.program-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: #888;
}

.join-button {
  background: #00d37b;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500px;
  display: inline-block;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
}

.join-button:hover {
  background: #00b26b;
  transform: translateY(-2px);
  color: white;
}

/* Data Table Section */
.programs-data {
  background: white;
  border-top: 1px solid #e9ecef;
  margin: 0 2rem 2rem 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.data-header {
  background: #f8f9fa;
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
  text-align: center;
  border-radius: 15px 15px 0 0;
}

.data-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
}

.volunteer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.volunteer-table th,
.volunteer-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.volunteer-table th {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f9fa;
  font-size: 1rem;
  font-weight: bolder;
  color: #333;
  top: 0;
  z-index: 10;
}

.volunteer-table tr:hover {
  background: #f8f9fa;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-active {
  background: #d4edda;
  color: #155724;
}

.status-recruiting {
  background: #fff3cd;
  color: #856404;
}

.status-full {
  background: #f8d7da;
  color: #721c24;
}

.impact-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 4rem 2rem;
  border-radius: 15px;
  margin: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.impact-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.impact-icon {
  font-size: 3rem;
  color: #00d37b;
  margin-bottom: 1rem;
}

.impact-title {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
}

.impact-description {
  color: #666;
  line-height: 1.6;
}

.testimonial-section {
  margin: 4rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #00d37b;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #00d37b, #a8e063);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500px;
  font-size: 1.2rem;
}

.author-info h4 {
  color: #333;
  margin-bottom: 0.2rem;
}

.author-info p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

.reviews-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 30px;
  margin: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feedback-form {
  background: linear-gradient(45deg, #00d37b, #a8e063);
  padding: 30px;
  margin: 40px 20px;
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Shared styles */
.rating-summary {
  font-size: 1.6rem;
  font-weight: 500px;
  color: #00d37b;
}

.subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.review-card {
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding-top: 15px;
}

.review-card h4 {
  font-size: 1.1rem;
  color: #17252a;
}

.review-card p {
  font-size: 0.95rem;
  margin: 8px 0;
}

.review-card .meta {
  font-size: 0.85rem;
  color: #777;
}

.feedback-form h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.feedback-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  resize: vertical;
}

.feedback-form textarea::placeholder {
  color: #666;
}

.emoji-rating {
  margin: 15px 0;
}

.emoji-rating span {
  font-size: 1.5rem;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.emoji-rating span:hover {
  transform: scale(1.3);
}

.form-buttons {
  margin-top: 15px;
}

.submit-btn,
.cancel-btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500px;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}

.submit-btn {
  background-color: white;
  color: #00d37b;
}

.submit-btn:hover {
  background-color: #f8f9fa;
}

.cancel-btn {
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
  margin-left: 10px;
}

.cancel-btn:hover {
  background-color: #e9ecef;
}

.faq-section {
  margin: 4rem 0;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500px;
  color: #333;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-answer {
  padding: 1.5rem;
  color: #666;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .programs-content {
    flex-direction: column;
    height: auto;
  }

  .programs-cards {
    max-height: 400px;
  }

  .programs-data {
    border-left: none;
    border-top: 1px solid #e9ecef;
  }

  .programs-header h2 {
    font-size: 2rem;
  }

  .programs-content {
    height: 500px;
  }

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

  .volunteer-table {
    font-size: 0.8rem;
  }

  .volunteer-table th,
  .volunteer-table td {
    padding: 8px;
  }
}
