body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    background: #eb961e;
}

.card h3 {
    color: #444C80;
    font-weight: bold;
}

.logo {
    height: 500px;
}

.icon-default {
    color: #444C80;
}

@media (max-width: 600px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        width: 100%;
        height: 300px;
    }
}