 main .download-section img{
    width: 100%;
    max-height: 400px;
    min-height: 400px;
    border: 3px solid rgba(180, 180, 180, 0.226);
    border-radius: 10px;
    object-fit: cover;
 }

 main .download-section div{
    display: block;
 }

 main .download-section .title{
    font-weight: bold;
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 20px;
 }

 main .download-section .category{
    font-size: 1rem;
    background-color: #999999a1;
    color: white;
    padding: 4px 20px;
    border-radius: 6px;
    text-decoration: none;
 }


 main .download-section button {
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    background: #00bf63;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main .download-section button:hover {
    background: #00509b;
}

main .download-section button:active {
    transform: translateY(0);
}