.pakistan-project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
}

.project-header {
    text-align: center;
    margin-bottom: 40px;
}

.project-header h1 {
    font-size: 36px;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.project-intro {
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.projects-list {
    margin-bottom: 40px;
}

.project-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.project-icon {
    font-size: 32px;
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
}

.project-details {
    flex: 1;
}

.project-details h3 {
    font-size: 20px;
    color: #27ae60;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.project-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #555;
}

.project-cost {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
}

.donation-appeal {
    text-align: center;
    margin-bottom: 30px;
}

.appeal-text {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.donation-option {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 5px;
    text-align: center;
}

.donation-option h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.donation-option p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.donate-btn {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.donate-btn:hover {
    background-color: #219653;
}

@media (max-width: 600px) {
    .project-header h1 {
        font-size: 28px;
    }
    
    .project-item {
        flex-direction: column;
    }
    
    .project-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .donation-options {
        grid-template-columns: 1fr;
    }
}