   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: serif;
      background-color: #f9f9f9;
      color: #333;
      line-height: 1.8;
    }
    header {
      background: linear-gradient(to right, #6a11cb, #2575fc);
      color: white;
      padding: 2rem 1rem;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    header p {
      font-size: 1.1rem;
      opacity: 0.9;
    }
    nav {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      background: #f0f0f0;
      padding: 1rem;
      border-bottom: 1px solid #ddd;
    }
    nav a {
      color: #444;
      text-decoration: none;
      font-weight: bold;
      font-family: 'Roboto', sans-serif;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #2575fc;
    }
    main {
      max-width: 800px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    section {
      margin-bottom: 3rem;
      background: white;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    h2 {
      color: #2575fc;
      margin-bottom: 1.5rem;
      border-bottom: 2px solid #eee;
      padding-bottom: 0.5rem;
    }
    h3 {
      color: #6a11cb;
      margin: 1.5rem 0 1rem;
    }
    p {
      margin-bottom: 1rem;
    }
    .intro {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #444;
    }
    .testimony {
      margin-bottom: 2.5rem;
    }
    .notes {
      background: #f8f8ff;
      padding: 1.5rem;
      border-left: 4px solid #6a11cb;
      margin: 2rem 0;
    }
    .salvation {
      background: #f0f8ff;
      padding: 1.5rem;
      border-radius: 8px;
      text-align: center;
      margin: 2rem 0;
    }

  /* Add these styles for collapsible sections */
  .collapsible-section {
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .collapsible {
    background-color: #f8f9fa;
    color: #444;
    cursor: pointer;
    padding: 1.5rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: inherit;
    font-family: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
  }

  .collapsible:hover {
    background-color: #f0f0f0;
  }

  .collapsible h3 {
    margin: 0;
    color: #6408c5;
    font-size: 17px;
    font-family: 'times new roman', serif;
    font-weight: bold;
  }

  .toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
  }

  .content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
  }

  .collapsible.active {
    background-color: #f0f0f0;
  }

  .collapsible.active .toggle-icon {
    transform: rotate(45deg);
  }

  .collapsible.active + .content {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px; /* Adjust based on your content */
  }


      /* Add these styles */
      .testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    margin: 2rem 0;
    gap: 1rem;
  }

  .testimonials-container {
    display: flex;
    overflow: hidden;
    gap: 1.5rem;
    scroll-behavior: smooth;
    width: 100%;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #6a11cb;
    transition: transform 0.3s;
  }

  .carousel-btn {
    background: #6a11cb;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }

  .carousel-btn:hover {
    background: #2575fc;
  }

  .carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
  }

  .dot.active {
    background: #6a11cb;
  }

  @media (max-width: 768px) {
    .testimonial-card {
      flex: 0 0 100%;
    }
    
    .carousel-btn {
      display: none;
    }
  }

  .testimonial-card h3 {
    color: #2575fc;
    margin-bottom: 0.5rem;
  }

  .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .add-btn {
    background: #6a11cb;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    display: block;
    margin: 2rem auto;
    transition: background 0.3s;
  }

  .add-btn:hover {
    background: #2575fc;
  }

  .form-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 1rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }

  input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
  }

  textarea {
    resize: vertical;
  }

  .submit-btn {
    background: #2575fc;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 1rem;
  }

  .cancel-btn {
    background: #f0f0f0;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  footer {
    text-align: center;
    padding: 2rem;
    background: #333;
    color: white;
    margin-top: 3rem;
  }
  @media (max-width: 600px) {
    nav {
      flex-direction: column;
      gap: 0.5rem;
      align-items: center;
    }
    section {
      padding: 1.5rem;
    }
    .token-display {
  margin-top: 15px;
  padding: 10px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.delete-token {
  font-size: 1.2em;
  font-weight: bold;
  color: #d9534f;
  text-align: center;
  padding: 5px;
  background: #f5f5f5;
  border: 1px dashed #ccc;
  margin: 10px 0;
  letter-spacing: 1px;
}

/* Form messages */
.form-message {
  margin: 10px 0;
  padding: 10px;
  border-radius: 4px;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Delete button */
#deleteTestimonialBtn {
  background-color: #f8f9fa;
  color: #dc3545;
  border: 1px solid #dc3545;
  margin-left: 10px;
}

#deleteTestimonialBtn:hover {
  background-color: #dc3545;
  color: white;
}

/* Button container for side-by-side display */
.button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

/* Form container styling */
.form-container {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Cancel button */
.cancel-btn {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}

.cancel-btn:hover {
  background-color: #5a6268;
}
  }

  .donation-section {
  padding: 2em;
  background-color: #fdfaf6;
  border-top: 2px solid #e5ddd5;
  text-align: center;
  font-family: 'Merriweather', serif;
}

.donation-section h2 {
  font-size: 1.8em;
  color: #3b2f2f;
  margin-bottom: 0.5em;
}

.donation-section p {
  color: #4b3832;
  margin: 0.5em 0;
}

.donation-box {
  margin-top: 1em;
  display: inline-block;
  background: #fffbe8;
  padding: 1.5em 2em;
  border: 1px solid #d4cfc7;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.donation-label {
  font-weight: bold;
  margin-bottom: 0.3em;
}

.donation-email {
  font-size: 1.1em;
  color: #5a4334;
  word-break: break-word;
  margin-bottom: 1em;
}

.donate-btn {
  display: inline-block;
  padding: 0.7em 1.2em;
  background-color: #0070ba;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.donate-btn:hover {
  background-color: #005ea6;
}
.notes {
  background: #f8f8ff;
  padding: 1.5rem;
  border-left: 4px solid #6a11cb;
  margin: 2rem 0;
}
.salvation {
  background: #f0f8ff;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}
 