* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 100%;
    max-width: 586px; 
    height: auto;    
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
    align-items: stretch;
}

.tile {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    flex: 1 1 30%;
    min-width: 300px;
    max-width: 30%;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
    transition: transform 0.3s;
    text-align: center;
}

.tile img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.tile-text {
    padding: 15px;
    flex-grow: 1;
}

.tile:hover {
    transform: scale(1.05);
}

@media (max-width: 1000px) {
    .tile {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 600px) {
    .tile {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

