body {
    background-color: #005ea4;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-size: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3, h4, p {
    font-size: inherit;
}

.logo {
    margin: 20px auto;
    display: block;
    max-width: 200px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    padding: 20px;
}

.text {
    width: calc(100% - 100px);
    margin: 0 auto;
    text-align: justify;
    max-width: 1800px;
    padding: 0 50px;
}

.text p strong {
    font-size: 20px;
}

.images {
    width: 40%;
    position: relative;
    max-width: 400px;
    top: -150px; /* A képek 150 pixellel feljebb mozgatása */
}

.image {
    width: 100%;
    height: auto;
    position: absolute;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.image.active {
    opacity: 1;
}

/* Footer */
.footer {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000; /* Biztosítja, hogy ne takarja más elem */
}

.footer a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

/* Nyelvválasztó */
.language-selector {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    font-weight: bold;
    width: fit-content;
}

.language-options {
    display: none;
    position: absolute;
    right: 0;
    top: 35px;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 5px;
    width: 120px;
    z-index: 9999;
    text-align: center;
}

.language-options div {
    padding: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.language-options div:hover {
    background: rgba(0, 0, 0, 0.1);
}

.language-selector span {
    display: block;
    padding: 5px;
    cursor: pointer;
}

/* Contact Container - Szöveg és képek egymás mellett */
.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 50px;
}

.contact-info {
    font-weight: bold;
    width: 50%;
    margin-top: 40px;
}

.contact-info h3,
.contact-info h4 {
    margin-top: 20px;
}

.contact-link {
    color: white;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Mobilbarát elrendezés */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-info, .images {
        width: 100%;
    }

    .images {
        max-width: 100%;
        position: relative;
    }
}
.custom-button {
    display: block;
    width: fit-content;
    margin: 0 auto 20px; /* Középre igazítás és távolság a szövegtől */
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    transition: background 0.3s ease-in-out;
}

.custom-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

