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

  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/box.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    animation: fadeIn 1s ease-in;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

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

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-button {
    background: #e7eb08;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }

  .progress-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
  }

  .progress-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .progress-bar {
    background: #eee;
    height: 30px;
    border-radius: 15px;
    margin: 2rem 0;
    overflow: hidden;
  }

  .progress-fill {
    background: #4647a7;
    height: 100%;
    width: 15%;
    border-radius: 15px;
    transition: width 1.5s ease-in-out;
  }

  .stats {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideUp 0.5s ease-out;
    min-width: 200px;
  }

  .featured-cause {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    flex-wrap: wrap;
  }

  .featured-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
  }

  .featured-content {
    flex: 1;
    min-width: 300px;
  }

  .featured-content h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .featured-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .cause-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cause-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .cause-card:hover {
    transform: translateY(-10px);
  }

  .cause-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .cause-content {
    padding: 1.5rem;
  }

  .cause-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
  }

  .cause-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .donation-progress {
    background: #f5f5f5;
    height: 10px;
    border-radius: 5px;
    margin: 1rem 0;
  }

  .progress-bar-fill {
    height: 100%;
    background: #3498db;
    border-radius: 5px;
    transition: width 1s ease;
  }

  .donation-info {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
  }

  .donate-button {
    background: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: background 0.3s ease;
  }

  .donate-button:hover {
    background: #2980b9;
  }

  .footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
  }

  @media (max-width: 768px) {
    .featured-cause {
      flex-direction: column;
      gap: 2rem;
    }
  }