/* Główne style i czcionka */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Jasnoszare tło dla kontrastu */
    color: #333; /* Ciemny tekst */
}

/* Kontener główny (wyśrodkowanie treści) */
.container {
    width: 90%;
    max-width: 1000px; /* Nieco szerszy niż poprzednio */
    margin: 20px auto;
    padding: 20px 40px;
    background-color: #ffffff; /* Białe tło dla treści */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Delikatny cień */
    border-radius: 10px;
}

/* Nagłówki i stopa (Kolor firmowy: Granatowy/Ciemny) */
header {
    background-color: #004d99; /* Granatowy kolor firmowy */
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

h1 {
    margin-top: 0;
    font-size: 2.5em;
    text-transform: uppercase;
}

.subheader {
    font-size: 1.1em;
    opacity: 0.9;
    margin-top: 10px;
}

h2 {
    color: #004d99; /* Granatowe nagłówki sekcji */
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
    margin-top: 40px;
    font-weight: 600;
}

/* Lista linków (Agenci) */
.links {
    list-style: none;
    padding: 0;
}

.links li {
    padding: 10px 0;
    border-bottom: 1px dotted #ccc;
}

.links a {
    color: #007bff; /* Linki w bardziej widocznym odcieniu niebieskiego */
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.links a:hover {
    color: #cc0000; /* Czerwony hover */
    text-decoration: underline;
}

/* Box z danymi firmy (DANE REJESTROWE) */
.company-box {
    border: 1px solid #ccc;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
    margin-top: 20px;
}

.company-box p {
    margin: 5px 0;
    font-size: 1em;
}

/* Stopka (Prawa autorskie) */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    background-color: #004d99; /* Używamy koloru nagłówka */
    color: #ffffff;
    font-size: 0.85em;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
