body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    margin-bottom: 40px;
    text-align: center;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    color: #555;
    font-size: 1.2em;
    line-height: 1.4em;
    margin-bottom: 20px;
}

.content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 45%;
    box-sizing: border-box;
    text-align: center;
}

.column-logo {
    width: 150px;
    height: auto;
    margin-bottom: 0px;
}

h2 {
    color: #444;
    font-size: 1.8em;
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .column {
        max-width: 100%;
    }

    h1 {
        font-size: 1.8em;
    }
}

/* Vertikális középre igazítás asztali nézetben */
@media (min-width: 769px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #d90c16;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}