/* ====== GLOBAL STYLES ====== */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ====== HEADER ====== */
header {
    background-color: #003366;
    color: white;
    padding: 15px 0;
    border-bottom: 4px solid #006699;
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 20px;
}

.logo {
    max-height: 120px;   /* nagyobb logó */
    height: auto;
}

.header-text {
    flex: 1;
}

header h1 {
    margin: 0;
    font-size: 1.4em;   /* kisebb, arányosabb */
    line-height: 1.3em;
}

header .date-location {
    font-size: 1em;
    margin-top: 5px;
    color: #e0e0e0;
}

/* ====== NAVIGATION ====== */
nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    background-color: #006699;
    color: white;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #004c80;
}

/* ====== MAIN CONTENT ====== */
main {
    padding: 30px 0;
}

main h2 {
    color: #003366;
    border-bottom: 2px solid #006699;
    padding-bottom: 5px;
}

main p {
    margin-bottom: 1em;
}

.mapimg {
  max-width: 85%;   /* Image will never exceed the width of its container */
  height: auto;      /* Keeps the aspect ratio intact */
  display: block;    /* Removes inline spacing issues */
}

/* ====== FOOTER ====== */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9em;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

    header h1 {
        font-size: 1.2em;
    }

    .logo {
        max-height: 100px;
    }
}
/* ====== MAIN TWO-COLUMN LAYOUT ====== */
.main-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.content {
    flex: 2 1 600px;
}

.sidebar {
    flex: 1 1 250px;
    background-color: #f5f5f5;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.sidebar h3 {
    color: #003366;
    border-bottom: 2px solid #006699;
    padding-bottom: 5px;
    margin-top: 0;
}

.sidebar ul {
    list-style-type: none;
    padding-left: 0;
}

.sidebar ul li {
    margin-bottom: 8px;
}

.sidebar a {
    text-decoration: none;
    color: #006699;
}

.sidebar a:hover {
    text-decoration: underline;
}

/* Mobile stacking */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
    }
}
/* --- Fine-tuning for two logos layout --- */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

.logo {
    max-height: 90px;
    height: auto;
    flex: 0 0 auto;
}

.header-text {
    flex: 1;
    min-width: 280px;
}

header h1 {
    margin: 0;
    font-size: 1.3em;
    line-height: 1.3em;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .logo {
        max-height: 80px;
        margin: 5px 0;
    }

    header h1 {
        fon
