.mission-section {
    background: #fff;
    padding: 50px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.mission-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: normal;
    border-bottom: 1px solid #d4b896;
    padding-bottom: 10px;
    text-align: center;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-video {
    margin-bottom: 0;
}

.mission-video video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 2px solid #d4b896;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission-text {
    max-width: none;
    margin: 0;
    padding: 0;
}

.mission-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.how-it-works {
    background: #fff;
    padding: 50px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.how-it-works h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: normal;
    border-bottom: 1px solid #d4b896;
    padding-bottom: 10px;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.step-number {
    background: #8b4513;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 16px;
}

.step-content h3 {
    margin-bottom: 10px;
    color: #2c2c2c;
    font-size: 18px;
}

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.stats-section {
    background: #fff;
    padding: 50px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat {
    border-bottom: 2px solid #d4b896;
    padding-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #8b4513;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

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

.benefactors-section {
    background: #fff;
    padding: 50px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.benefactors-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: normal;
    border-bottom: 1px solid #d4b896;
    padding-bottom: 10px;
    text-align: center;
}

.success-stories {
    background: #fff;
    padding: 50px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.success-stories h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: normal;
    border-bottom: 1px solid #d4b896;
    padding-bottom: 10px;
    text-align: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.requests-section {
    background: #fff;
    padding: 50px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.requests-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: normal;
    border-bottom: 1px solid #d4b896;
    padding-bottom: 10px;
    text-align: center;
}

.thermometer-section {
    background: #fff;
    padding: 50px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.thermometer-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: normal;
    border-bottom: 1px solid #d4b896;
    padding-bottom: 10px;
}

.thermometer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.donation-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.progress-goal {
    font-size: 22px;
    color: #8b4513;
    font-family: 'Courier New', monospace;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.thermometer-tube {
    width: 40px;
    height: 320px;
    background: linear-gradient(to right, #f8f8f8 0%, #e8e8e8 50%, #f8f8f8 100%);
    border: 4px solid #8b4513;
    border-radius: 20px 20px 0 0;
    position: relative;
    margin-bottom: -20px;
    z-index: 1;
    box-shadow: 
        inset 0 0 15px rgba(0,0,0,0.1),
        0 4px 8px rgba(0,0,0,0.15);
}

.thermometer-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, 
        #8b4513 0%, 
        #a0541a 30%, 
        #b85f1e 60%, 
        #cc6a22 100%);
    border-radius: 0 0 16px 16px;
    transition: height 2s ease-out;
    box-shadow: 
        inset 0 0 10px rgba(255,255,255,0.3),
        0 0 15px rgba(139, 69, 19, 0.4);
}

.thermometer-bulb {
    width: 75px;
    height: 75px;
    background: radial-gradient(circle at 30% 30%, 
        #cc6a22 0%, 
        #a0541a 50%, 
        #8b4513 100%);
    border-radius: 50%;
    border: 4px solid #8b4513;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.2),
        inset 0 0 20px rgba(255,255,255,0.2);
}

.thermometer-bulb::before {
    content: '';
    position: absolute;
    top: 17px;
    left: 17px;
    width: 27px;
    height: 27px;
    background: radial-gradient(circle at 40% 40%, 
        rgba(255,255,255,0.6) 0%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 100%);
    border-radius: 50%;
}

.current-amount {
    margin-top: 18px;
    font-size: 20px;
    color: #8b4513;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.progress-label {
    position: absolute;
    right: -100px;
    font-size: 15px;
    color: #8b4513;
    font-family: 'Courier New', monospace;
    background: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
    padding: 8px 12px;
    border: 2px solid #d4b896;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    font-weight: bold;
}

.progress-label::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #d4b896;
}

.thermometer-text {
    max-width: 400px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.donor-info-section {
    background: #fff;
    padding: 50px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.donor-info-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: normal;
    border-bottom: 1px solid #d4b896;
    padding-bottom: 10px;
    text-align: center;
}

.donor-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.donor-info p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .mission-video video {
        max-width: 100%;
    }

    .mission-text {
        padding: 0 10px;
    }
    
    .thermometer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .progress-label {
        right: -70px;
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .mission-section,
    .how-it-works,
    .stats-section,
    .benefactors-section,
    .success-stories,
    .requests-section,
    .thermometer-section,
    .donor-info-section {
        padding: 30px 20px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}