/* Styly pro action buttons */
.action-buttons-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
}
.action-buttons-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.action-button {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.action-button:hover {
    border-color: #4e8cd7;
    box-shadow: 0 8px 25px rgba(78, 140, 215, 0.2);
    text-decoration: none;
}
.action-button img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
.action-button span {
    font-size: 15px;
    color: #333;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    display: block;
}
.action-button:hover span {
    color: #C8102E;
}

@media (max-width: 768px) {
    .action-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    .action-button {
        width: 100%;
        max-width: 400px;
        padding: 25px 15px;
    }
}