.fundraising-download {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    text-align: center;
    font-family: Arial, sans-serif;
}

.download-title {
    font-size: 24px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.download-instruction {
    font-size: 16px;
    color: #4CAF50;
    margin-bottom: 30px;
    line-height: 1.5;
}

.pdf-container {
    display: inline-block;
    margin-top: 20px;
}

.pdf-link {
    text-decoration: none;
    display: block;
}

.pdf-icon {
    width: 120px;
    height: 140px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.pdf-icon:hover {
    transform: scale(1.05);
}

.pdf-top {
    background-color: #FF0000;
    color: #ffffff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.pdf-bottom {
    background-color: #ffffff;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdf-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 10px;
    align-items: center;
    justify-content: center
}
.pdf-link img{
    width: 100px;
}

@media (max-width: 480px) {
    .fundraising-download {
        padding: 20px;
    }
    
    .download-title {
        font-size: 20px;
    }
    
    .download-instruction {
        font-size: 14px;
    }
    
    .pdf-icon {
        width: 100px;
        height: 120px;
    }
}