.button {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e39600;
    background-image: none;
    color: #ffffff !important; 
    font-size: 15px;
    margin: 8px;
    text-decoration: none !important;
    border-radius: 0;
    text-align: center;
    height: 58px;
    padding: 12px 15px;
    text-shadow: none;
    
}

.button:hover {
    background-color: #ca7d0b !important;
    color: #1d2758 !important; 
    text-decoration: none;
    cursor: pointer;
}

/* Szerokość przycisków w konkretnych sekcjach */
.sec-1 .button, 
.sec-2 .button, 
.sec-3 .button {
    width: 20%; 
    min-width: 180px;
}


/* Centrowanie przycisków w sekcji */
.sec-1 {
    text-align: center;
    padding: 20px 0;
}

/* --- Responsywność --- */

@media screen and (max-width: 1023px) {
    .sec-1 .button, .sec-2 .button, .sec-3 .button {
        width: 40%;
    }
}

@media screen and (max-width: 767px) {
    .sec-1 .button, .sec-2 .button, .sec-3 .button {
        width: 90%;
        display: flex;
        margin: 10px auto;
    }
}

