/* Style pour la page de donations */
:root {
    --donation-primary: #3a7bd5;
    --donation-secondary: #ff6b6b;
    --donation-tertiary: #4caf50;
    --donation-light: #f5f7fa;
    --donation-dark: #1f2937;
  }
  
  /* Hero section */
  .donation-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1200/400');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 20px 100px;
    margin-top: 0;
    max-width: 100%;
  }
  
  .donation-hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .donation-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .donation-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Raisons de donner */
  .donation-intro {
    padding: 4rem 0;
    background-color: var(--donation-light);
  }

  .donation-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
  }
  
  .reason-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
  }
  
  .reason-card:hover {
    transform: translateY(-5px);
  }
  
  .reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--donation-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .reason-icon i {
    font-size: 2rem;
    color: white;
  }
  
  .reason-card h3 {
    margin-bottom: 1rem;
    color: var(--donation-primary);
  }
  
  /* Options de donation */
  .donation-options {
    padding: 4rem 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--donation-primary);
  }
  
  .section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #555;
  }
  
  .payment-methods {
    max-width: 920px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
  }
  
  .method-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
  }
  
  .tab-button {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .tab-button.active {
    color: var(--donation-primary);
    border-bottom: 3px solid var(--donation-primary);
  }
  
  .tab-content {
    padding: 2rem;
  }
  
  .tab-pane {
    display: none;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  /* Mobile money options */
  .mobile-money-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
  }
  
  .payment-option {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: var(--donation-light);
    transition: all 0.3s ease;
  }
  
  .payment-option:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .payment-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
  }
  
  .payment-option h3 {
    color: var(--donation-primary);
    margin-bottom: 0.5rem;
  }
  
  .payment-number {
    background: #e9f0f9;
    padding: 0.5rem;
    border-radius: 5px;
    font-weight: bold;
    margin: 0.5rem 0;
  }
  
  .payment-info {
    font-size: 0.9rem;
    color: #666;
  }
  
  /* Steps for donations */
  .donation-steps {
    background: #f5f7fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
  }
  
  .donation-steps h3 {
    margin-bottom: 1rem;
    color: var(--donation-primary);
  }
  
  .steps-list {
    padding-left: 1.5rem;
  }
  
  .steps-list li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
  }
  
  /* Bank transfer info */
  .bank-info {
    background: #f5f7fa;
    padding: 2rem;
    border-radius: 8px;
  }
  
  .bank-details {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .bank-detail-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
  }
  
  .bank-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .detail-label {
    width: 200px;
    font-weight: bold;
    color: #555;
  }
  
  .bank-note {
    background: #e9f0f9;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--donation-primary);
  }
  
  .bank-note i {
    color: var(--donation-primary);
  }
  
  /* Recurring donations */
  .recurring-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 1.5rem;
  }
  
  .recurring-option {
    background: #f5f7fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
  }
  
  .option-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .option-icon {
    width: 40px;
    height: 40px;
    background: var(--donation-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1rem;
  }
  
  .option-icon i {
    color: white;
  }
  
  .recurring-option p {
    margin-bottom: 1.5rem;
  }
  
  /* Tax information */
  .tax-info {
    padding: 3rem 0;
    background: var(--donation-light);
  }
  
  .tax-info-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
  }
  
  .tax-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--donation-tertiary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2rem;
  }
  
  .tax-icon i {
    font-size: 2rem;
    color: white;
  }
  
  .tax-content h3 {
    color: var(--donation-tertiary);
    margin-bottom: 0.5rem;
  }
  
  /* Testimonials */
  .testimonial-donation {
    padding: 4rem 0;
  }
  
  .testimonial-item {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    text-align: center;
  }
  
  .testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.1;
    font-family: Georgia;
  }
  
  .testimonial-author {
    font-weight: bold;
    color: var(--donation-primary);
  }
  
  .testimonial-role {
    color: #777;
    font-size: 0.9rem;
  }
  
  /* Contact section */
  .donation-contact {
    padding: 4rem 0;
    background: var(--donation-light);
  }
  
  .donation-contact .container{
      width: 100% !important;
  }
  
  .contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
  }
  
  .contact-option {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--donation-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
  }
  
  .contact-icon i {
    font-size: 1.5rem;
    color: white;
  }
  
  .contact-option h3 {
    color: var(--donation-primary);
    margin-bottom: 0.8rem;
  }
  
  .contact-hours {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.5rem;
  }
  
  /* Buttons */
  .btn-primary {
    display: inline-block;
    background-color: var(--donation-primary);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #2c62b6;
  }
  
  .btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--donation-primary);
    border: 2px solid var(--donation-primary);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    background-color: var(--donation-primary);
    color: white;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .donation-hero h1 {
      font-size: 2.2rem;
    }
    
    .tax-info-card {
      flex-direction: column;
      text-align: center;
    }
    
    .tax-icon {
      margin-right: 0;
      margin-bottom: 1.5rem;
    }
    
    .bank-detail-item {
      flex-direction: column;
    }
    
    .detail-label {
      width: 100%;
      margin-bottom: 0.5rem;
    }
    
    .method-tabs {
      flex-direction: column;
    }
    
    .tab-button {
      border-bottom: 1px solid #ddd;
    }
    
    .tab-button.active {
      border-bottom: 1px solid #ddd;
      border-left: 3px solid var(--donation-primary);
    }
  }