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

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 100px;
}

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

.headline h1 {
    margin: 0;
    font-size: 2em;
}

.headline p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2em;
}

.headline img {
    height: 40px;
}

.image-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.image-grid img {
    width: calc(25% - 10px);
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}

.contact_icon {
    fill: #565e64;
    height: 30px;
}

@media (max-width: 768px) {
    .image-grid {
        flex-wrap: nowrap;
    }

    .image-grid img {
        width: auto;
        height: auto;
    }

    .headline p {
        flex-direction: column;
        gap: 5px;
    }
}