/* Ogólne ustawienia */
body {
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
}

/* Kontener dla nagłówka */
.header-container {
    background-color: #023e8a;
    height: auto;
    display: flex;
    flex-wrap: nowrap; /* Utrzymanie układu poziomego */
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Linki w nagłówku */
.header-container a {
    color: white;
    text-decoration: none;
    margin: 5px 10px;
    font-size: 16px;
    white-space: nowrap;
}

.header-container a.cta {
    background-color: #ff5722;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.header-container a:hover, .header-container a.cta:hover {
    background-color: #e64a19;
}

/* Kontener dla treści */
.content-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Tytuły */
h1 {
    font-size: 2rem;
    color: #023e8a;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

/* Akapity */
p {
    font-size: 1rem;
    color: #555;
    margin: 10px 0;
}

/* Mapka */
iframe {
    width: 100%;
    height: 400px;
    border: none;
    margin-top: 20px;
}

/* Kontener dla stopki */
.footer-container {
    background-color: #023e8a;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

.footer-container p {
    color: white; /* Gwarantuje, że tekst w stopce będzie biały */
}

/* Stylizacja dla wyróżnionego akapitu */
.highlighted-text {
    font-size: 1.2rem; /* Zwiększenie wielkości tekstu */
    color: #000000; /* Wyróżnienie kolorem */
    font-weight: bold; /* Pogrubienie całego tekstu */
    text-align: center; /* Wyśrodkowanie tekstu */
    background-color: #4af80f; /* Jasne tło dla wyróżnienia */
    padding: 10px;
    border-radius: 8px; /* Zaokrąglenie rogów */
    margin: 20px 0; /* Odstępy nad i pod tekstem */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Delikatny cień */
}
.red-text {
    color: #ff0202c9; /* Wyróżnienie kolorem */
    font-weight: bold; /* Pogrubienie całego tekstu */
}
/* Stylizacja hiperłączy poza górnym menu */
.content-container a {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, text-shadow 0.3s;
}
p a.cta2 {
    font-size: 18px !important; /* Zwiększony rozmiar czcionki */
    font-weight: bold; /* Pogrubienie tekstu */
    text-decoration: none; /* Usuwa podkreślenie */
    color: #0056b3; /* Kolor linku */
}

p a.cta2:hover {
    color: #003d80 !important; /* Zmiana koloru po najechaniu */
    text-decoration: underline; /* Podkreślenie po najechaniu */
}

.content-container p a.cta2:active {
    color: #004080 !important;
}

.content-container p a.cta2:focus {
    outline: 2px dashed #0077cc !important;
}