* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Teljes képernyős keret */
html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Asztali gépen nincs görgetés */
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.container {
    display: flex;
    flex: 1; /* Ez kitölti a maradék helyet a lábléc felett */
    width: 100%;
}

/* Split alap elrendezés */
.split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 5%;
    position: relative;
}

/* Színek és hátterek (MEGTARTVA) */
.left {
    background: url(de-ik-header.jpg) center/cover;
    color: white;
}

.right {
    background: #004735;
    background: linear-gradient(180deg, rgba(0, 71, 53, 1) 30%, rgba(255, 171, 15, 1) 100%);
    color: white;
}

/* Szövegezés */
.content {
    max-width: 600px;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

h1 {
    font-size: 2.2rem; /* Kicsit kisebb, hogy beférjen egy képernyőre */
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.description {
    font-size: 0.9rem; /* Finomítva a hosszabb szöveg miatt */
    line-height: 1.4;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid white;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: white;
    color: #333;
}

/* --- ALSÓ SZEKCIÓ --- */
.bottom-bar {
    background: #1a273d;
    background: #111111;
    background: #FFF;
    color: #667;
    padding: 15px 5%;
    text-align: center;
}

.common-info {
    font-size: 0.85rem;
    color: #667;
    max-width: 1000px;
    margin: 0 auto 10px auto;
    font-style: italic;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
}

.logos span {
    font-size: 0.75rem;
    font-weight: bold;
    color: #666;
    text-transform: uppercase;
}


.logos img {
    max-height: 100px;
    max-width: 150px;
}
@media (max-width: 1024px) {
    body { overflow-y: auto; }
    .container { flex-direction: row; }
}
@media (min-width: 1024px) and (max-height: 700px) {
    body { overflow-y: auto; }
    .container { flex-direction: row; }
}
/* --- MOBIL NÉZET (768px alatt görgethető) --- */
@media (max-width: 768px) {
    body { overflow-y: auto; }
    .main-wrapper { height: auto; }
    .container { flex-direction: column; }
    .split { height: auto; padding: 50px 20px; }
    h1 { font-size: 1.8rem !important; }
    .bottom-bar { position: relative; }
    .logos { flex-wrap: wrap; }

    .logos img {
    max-height: 70px;
    max-width: 100px;
    }
}
ul {
    padding-left: 25px;
}