body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #FAF6ED;
    color: #0E2A3A;
}

.header {
    padding: 1rem 2rem;
    background-color: #0E2A3A;
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #14D4C7;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.steps {
    padding: 4rem 2rem;
    text-align: center;
}

.steps h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.step-item {
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: #666;
}

.box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 1rem auto;
    text-align: left;
}

.progress-wrapper {
    background: #e0e0e0;
    border-radius: 20px;
    width: 90%;
    height: 20px;
    margin: 1rem auto;
    overflow: hidden;
}

.progress-bar {
    background: #3DC46F;
    height: 100%;
    border-radius: 20px 0 0 20px;
}

.share-box {
    margin: 2rem auto;
    max-width: 600px;
}

.share-box input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.success-message {
    color: green;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
}

.contribution-form {
    background: white;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: left;
}

.steps-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 250px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}