/* ==========================================================================
   Główne style dla strony - Robert Balawender
   ========================================================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Opcjonalnie: Dodaj, jeśli nagłówek zasłania tytuł sekcji */
}
/* --- 1. Ustawienia globalne i podstawowe style dla body --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* --- 2. Nagłówek (Header) --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* --- NOWE LINIE PONIŻEJ --- */
    position: -webkit-sticky; /* Dla kompatybilności ze starszymi przeglądarkami Safari */
    position: sticky;
    top: 0; /* Przykleja nagłówek do górnej krawędzi ekranu */
    z-index: 1000; /* Gwarantuje, że nagłówek będzie zawsze na wierzchu */
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    width: 200px;
    height: auto;
}

.header-text h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #003781;
}

/* --- 3. Nawigacja (Menu) --- */
.main-nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #004080;
}

/* --- 4. Główna treść (Main) i Sekcje --- */
main {
    padding: 30px;
    max-width: 960px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #004080;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* --- 5. Sekcja oferty z zakładkami --- */
.offer-section-v2 h2 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 2rem;
}

.offer-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.tab-btn {
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    background-color: #ffffff;
    color: #555;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #f1f5f9;
    border-color: #004080;
}

.tab-btn.active {
    background-color: #004080;
    color: white;
    border-color: #004080;
}

.offer-content {
    display: none; /* KLUCZOWA REGUŁA: Domyślnie ukrywa panele */
    animation: fadeIn 0.5s ease-in-out;
}

.offer-content.active {
    display: block; /* KLUCZOWA REGUŁA: Pokazuje tylko aktywny panel */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.offer-card {
    background-color: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.offer-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.offer-card h3 {
    font-size: 1.4rem;
    color: #003781;
    margin-bottom: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* --- 6. Sekcja z korzyściami (trzy kolumny) --- */
.benefits-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: none;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    text-align: center;
}

.benefit-item {
    flex: 1;
    background-color: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-number {
    width: 60px;
    height: 60px;
    background-color: #004080;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: #003781;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.5;
}

/* --- 7. Sekcja z opiniami --- */
.reviews-section {
    background-color: #f9f9f9;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.reviews-section h2 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 2.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.review-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #ffb400;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    font-style: italic;
    flex-grow: 1;
}

.review-text::before {
    content: '“';
    font-size: 2.5rem;
    color: #e0e0e0;
    font-weight: bold;
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
}

.review-author {
    margin-top: 1.5rem;
    font-weight: bold;
    color: #003781;
    text-align: right;
}

.reviews-footer {
    text-align: center;
}

.google-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4285F4;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.google-button:hover {
    background-color: #357ae8;
}

/* --- 8. Sekcja kontaktowa --- */
.contact-section {
    background-color: transparent;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: none;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.contact-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.agent-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #004080;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #003781;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.agent-title {
    font-style: italic;
    color: #555;
    margin-top: 0;
    margin-bottom: 1rem;
    min-height: 40px;
}

.contact-card p {
    margin: 0.25rem 0;
    line-height: 1.6;
}

.contact-card a {
    color: #004080;
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* --- 9. Stopka (Footer) --- */
footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* --- 10. Przycisk "Powrót" --- */
#homeBtn {
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #004080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#homeBtn:hover {
    background-color: #003060;
}

/* --- 11. Responsywność dla urządzeń mobilnych --- */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .header-left {
        flex-direction: column;
    }
    
    .main-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .main-nav a {
        margin: 0 5px;
    }

    .benefits-grid,
    .contact-grid {
        flex-direction: column;
    }
}
/* --- NOWE STYLE DLA SEKCJI Z PREZENTACJĄ (IFRAME) --- */
.presentation-section {
    background-color: #f1f5f9; /* Delikatnie inne tło dla wyróżnienia sekcji */
    text-align: center; /* Wyśrodkowanie tekstu wewnątrz sekcji */
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.presentation-section h2 {
    border-bottom: none; /* Usuwamy podkreślenie, bo nagłówek jest wyśrodkowany */
    margin-bottom: 0.5rem;
}

.section-subtitle {
    max-width: 650px; /* Ograniczenie szerokości dla lepszej czytelności */
    margin: 0 auto 2.5rem auto; /* Wyśrodkowanie i odstęp na dole */
    color: #555;
    line-height: 1.5;
}

.iframe-container {
    display: flex;
    justify-content: center; /* Wyśrodkowanie elementu w poziomie */
    align-items: center;     /* Wyśrodkowanie elementu w pionie */
}

.iframe-container iframe {
    border: 1px solid #ddd;
    border-radius: 8px; /* Zaokrąglone rogi dla elegancji */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Delikatny cień */
}
/* -- Style dla zakładek przeniesionych do nawigacji -- */

/* 1. Dostosowanie przycisków-zakładek wewnątrz głównej nawigacji */
.main-nav .tab-btn {
    border: none; /* Usuwamy ramkę */
    background-color: transparent; /* Usuwamy tło */
    border-radius: 6px; /* Lekko zaokrąglamy rogi dla estetyki */
    padding: 8px 15px; /* Dopasowujemy wewnętrzny odstęp */
    margin: 0 5px; /* Zmniejszamy margines boczny */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* 2. Styl dla aktywnej zakładki w nawigacji - to jest najważniejszy efekt! */
.main-nav .tab-btn.active {
    background-color: #004080; /* Tło dla aktywnej zakładki */
    color: white; /* Biały tekst dla aktywnej zakładki */
}

/* 3. Efekt hover dla nieaktywnych zakładek, aby były interaktywne */
.main-nav .tab-btn:not(.active):hover {
    background-color: #f1f5f9; /* Delikatne tło po najechaniu */
    color: #004080;
}

/* --- 12. Style dla podstrony z artykułem --- */
.article-section {
    background-color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-section h1 {
    font-size: 2.5rem;
    color: #003781;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.article-section .published {
    color: #777;
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

.article-header-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    object-fit: cover;
}

.article-section h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-section blockquote {
    font-style: italic;
    color: #333;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #004080;
    background-color: #f8fafc;
    border-radius: 0 8px 8px 0;
}

.article-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.article-list li {
    font-size: 1.1rem;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.article-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    color: #008000;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    background-color: #f1f5f9;
    padding: 2.5rem;
    margin-top: 2rem;
    border-radius: 12px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #004080;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #003060;
}
/* ==========================================================================
   Style dla podstrony NNW Szkolne
   ========================================================================== */

/* --- 1. Sekcja Hero --- */
.hero-section-nnw {
    text-align: center;
    padding: 3rem 1rem;
    background-color: transparent;
    box-shadow: none;
}
.hero-section-nnw h1 {
    font-size: 2.8rem;
    color: #003781;
    margin-bottom: 1rem;
}
.hero-section-nnw p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-button-outline {
    background-color: transparent;
    border: 2px solid #004080;
    color: #004080;
}
.cta-button-outline:hover {
    background-color: #004080;
    color: white;
}

/* --- 2. Wspólne dla sekcji NNW --- */
.section-subtitle {
    max-width: 700px;
    margin: -1rem auto 2.5rem auto;
    text-align: center;
    line-height: 1.6;
    color: #555;
}

/* --- 3. Strefa Wiedzy --- */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    background-color: #ffffff;
    color: #555;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    background-color: #f1f5f9;
    border-color: #004080;
}
.filter-btn.active-filter {
    background-color: #004080;
    color: white;
    border-color: #004080;
}
.articles-grid-nnw {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.article-card-nnw {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}
.article-card-nnw:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #004080;
}
.article-card-nnw .category {
    font-size: 0.9rem;
    font-weight: bold;
    color: #004080;
    margin-bottom: 0.5rem;
}
.article-card-nnw h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

/* --- 4. Modal (okno z artykułem) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none; /* Zmieniane na 'flex' przez JS */
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-overlay.visible {
    display: flex;
}
.modal-content-wrapper {
    background-color: white;
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.modal-body {
    padding: 2rem 2.5rem;
}
.modal-body .prose h3 {
    font-size: 1.5rem;
    color: #003781;
    margin-top: 1.5rem;
}
.modal-body .prose p, .modal-body .prose li {
    font-size: 1.1rem;
    line-height: 1.7;
}
.modal-body .prose ul {
    list-style-position: inside;
}

/* --- 5. Sekcja Oferty NNW --- */
.offer-type-selector {
    display: inline-flex;
    border-radius: 30px;
    background-color: #e0e0e0;
    padding: 5px;
    margin-bottom: 2.5rem;
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.offer-type-btn {
    padding: 10px 25px;
    border: none;
    background: transparent;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.offer-type-btn.active-offer-type {
    background-color: #004080;
    color: white;
}
.offers-grid-nnw {
    display: grid;
    /* Domyślnie (mobile) jedna kolumna */
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Dwie kolumny na tabletach */
@media (min-width: 640px) {
    .offers-grid-nnw {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Cztery kolumny (jedna linia) na desktopach */
@media (min-width: 1024px) {
    .offers-grid-nnw {
        grid-template-columns: repeat(4, 1fr);
    }
}
.offer-card-nnw {
    border: 2px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #f8fafc;
}
.offer-card-nnw.selected, .offer-card-nnw:hover {
    transform: scale(1.05);
    border-color: #004080;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.offer-card-nnw .su-label { color: #555; }
.offer-card-nnw .su-value { font-size: 1.8rem; font-weight: bold; color: #003781; margin: 0.5rem 0; }
.offer-card-nnw .premium-value { font-size: 1.2rem; }
.offer-card-nnw .premium-value span { font-size: 2.5rem; font-weight: bold; }
.offer-card-nnw .duration-label { font-size: 0.9rem; color: #555; margin-top: 0.5rem; }
.offer-card-nnw .cta-button { display: block; width: 100%; margin-top: 1.5rem; }

.chart-title {
    text-align: center;
    font-size: 1.8rem;
    color: #004080;
    margin-top: 3rem;
}
.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
}

/* --- 6. Sekcja FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    cursor: pointer;
}
.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #004080;
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 1.2rem;
    line-height: 1.6;
}
.faq-item.is-open .faq-answer {
    max-height: 300px; /* Wystarczająco duża wartość */
    padding: 0 1.2rem 1.2rem 1.2rem;
}
.faq-item.is-open .faq-icon {
    transform: rotate(135deg);
}

/* --- 7. Uproszczona sekcja kontaktowa --- */
.contact-section-simple {
    text-align: center;
    background-color: #f1f5f9;
}
.contact-section-simple h3 {
    font-size: 1.8rem;
    color: #003781;
}
.contact-box {
    display: inline-block;
    background-color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 1rem;
}
.contact-box .agent-name { font-size: 1.5rem; font-weight: bold; color: #003781; }
.contact-box .agent-role { color: #555; }
.contact-box .agent-phone {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #004080;
    text-decoration: none;
}
.contact-box .agent-phone:hover { text-decoration: underline; }
/* --- Style dla tabeli w artykułach --- */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.styled-table thead tr {
    background-color: #004080;
    color: #ffffff;
    text-align: left;
}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}
.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #004080;
}
.styled-table strong {
    color: #003781;
}
/* ==========================================================================
   Style dla podstrony Poradnika D&O
   ========================================================================== */

.do-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
}

.do-header {
    text-align: center;
    margin-bottom: 3rem;
}
.do-header h1 {
    font-size: 2.8rem;
    color: #003781;
    margin-bottom: 1rem;
}
.do-header p {
    font-size: 1.2rem;
    color: #555;
}

.do-section {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    margin-bottom: 3rem;
}
.do-section.do-section-transparent {
    background-color: transparent;
    box-shadow: none;
}
.do-section h2 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
}

.do-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .do-intro-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.do-intro-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}
.chart-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 350px;
}

.role-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.role-button {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.role-button:hover {
    border-color: #004080;
    color: #004080;
}
.role-button.active {
    background-color: #004080;
    color: white;
    border-color: #004080;
    transform: scale(1.05);
}
.role-details-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    min-height: 150px;
    transition: all 0.5s ease;
    text-align: center;
}
.role-details-box h3 {
    font-size: 1.8rem;
    color: #003781;
    margin-bottom: 1rem;
}
.role-details-box p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.do-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #e0e0e0;
}
.tab-button {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 4px solid transparent;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-bottom: -2px;
}
.tab-button:hover {
    color: #004080;
}
.tab-button.active {
    border-color: #004080;
    color: #004080;
}
.do-tab-content {
    padding-top: 2rem;
}
.do-tab-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}
.do-tab-content .tab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: center;
}
.tab-grid-item {
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.tab-grid-item strong {
    display: block;
    color: #003781;
    margin-bottom: 0.5rem;
}

.scenarios-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.scenario-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    overflow: hidden;
}
.scenario-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
}
.scenario-icon {
    font-size: 2rem;
    color: #004080;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}
.scenario-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    padding: 0 1.5rem;
}
.scenario-details p {
    margin-bottom: 1.5rem;
}
.scenario-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .scenario-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.consequence-box {
    padding: 1rem;
    border-radius: 8px;
    border-left-width: 4px;
}
.consequence-box-red {
    background-color: #fef2f2;
    border-color: #ef4444;
}
.consequence-box-red h4 { color: #991b1b; }
.consequence-box-red ul { color: #b91c1c; }
.consequence-box-green {
    background-color: #f0fdf4;
    border-color: #22c55e;
}
.consequence-box-green h4 { color: #14532d; }
.consequence-box-green ul { color: #15803d; }
.consequence-box h4 {
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.consequence-box ul {
    list-style-position: inside;
    list-style-type: disc;
    font-size: 0.9rem;
}

.do-defense-section {
    background-color: #003781;
    color: white;
}
.do-defense-section h2 {
    color: white;
}
.do-defense-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}
.do-defense-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.do-defense-grid h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.do-defense-grid p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* --- Style dla slidera opinii --- */
.reviews-stats {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #555;
}
#avgRating {
    color: #ffb400;
    font-weight: bold;
}
.reviews-slider {
    position: relative;
    padding: 0 40px; /* Miejsce na strzałki */
}
.reviews-viewport {
    overflow: hidden;
}
.reviews-track {
    display: flex;
    gap: 2rem; /* Odstęp między kartami */
    padding-bottom: 1rem; /* Miejsce na scrollbar, jeśli się pojawi */
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none; /* Ukryj scrollbar w Firefox */
}
.reviews-track::-webkit-scrollbar {
    display: none; /* Ukryj scrollbar w Chrome/Safari */
}
.reviews-track > .review-card {
    flex: 0 0 calc(100% / 3 - 2rem * 2 / 3); /* 3 karty na widoku */
    scroll-snap-align: start;
}
@media (max-width: 960px) {
    .reviews-track > .review-card { flex-basis: calc(50% - 1rem); } /* 2 karty */
}
@media (max-width: 640px) {
    .reviews-track > .review-card { flex-basis: 100%; } /* 1 karta */
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.slider-nav:hover {
    background-color: #004080;
    color: white;
    border-color: #004080;
}
.slider-nav.prev { left: 0; }
.slider-nav.next { right: 0; }
/* Dodatkowe style dla płynnej karuzeli */
.reviews-track {
    /* Wyłączamy natywne przewijanie, bo będziemy animować ręcznie */
    overflow: visible; 
    /* Dodajemy pozycjonowanie, aby transformacje działały poprawnie */
    position: relative; 
}

.review-card {
    /* Upewniamy się, że karty się nie kurczą */
    flex-shrink: 0; 
}
/* ==========================================================================
   Style dla podstrony Akcja Junior
   ========================================================================== */

/* --- Sekcja Hero dla Akcji Junior --- */
.hero-section-junior {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f1f5f9; /* Jasne tło dla wyróżnienia */
    border-radius: 8px;
}
.hero-section-junior h1 {
    font-size: 2.8rem;
    color: #003781;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}
.hero-section-junior p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}
.junior-subtitle {
    font-size: 1rem;
    font-weight: bold;
    color: #00A3E0; /* Używamy akcentu kolorystycznego z oryginalnego projektu */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Akordeon (FAQ) --- */
.accordion-wrapper {
    max-width: 720px;
    margin: 0 auto;
}
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #003781;
    text-align: left;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.accordion-button:hover {
    background-color: #f8fafc;
}
.accordion-icon {
    font-size: 1rem;
    transition: transform 0.3s ease-in-out;
}
.accordion-button.active .accordion-icon {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: #f8fafc;
}
.accordion-button.active + .accordion-content {
    max-height: 500px; /* Wystarczająco duża wartość */
}
.accordion-content .content-inner {
    padding: 1.25rem;
    border-top: 1px solid #e0e0e0;
}

/* --- Sekcja Bonusowa --- */
.bonus-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.bonus-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-width: 220px;
}
.bonus-value {
    font-size: 3rem;
    font-weight: bold;
    color: #00A3E0;
}
.bonus-description {
    margin-top: 0.5rem;
    font-weight: bold;
    color: #003781;
}

/* --- Inne drobne style --- */
.deadline-text {
    text-align: center;
    font-weight: bold;
    color: #003781;
    margin-top: 1rem;
}
/* --- Sekcja Kluczowe Informacje (Akcja Junior) --- */
.key-info-section {
    background-color: #ffffff;
    padding: 2rem 1rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: none; /* Reset cienia z ogólnej sekcji */
}

.key-info-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.key-info-item {
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.key-info-value {
    font-size: 3.5rem;
    font-weight: 800; /* extrabold */
    color: #00A3E0; /* Jasny, akcentowy niebieski */
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.key-info-title {
    font-size: 1.25rem;
    font-weight: 600; /* semibold */
    color: #003781; /* Ciemny niebieski Balawender */
    margin-bottom: 0.75rem;
}

.key-info-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Responsywność dla sekcji kluczowych informacji */
@media (max-width: 768px) {
    .key-info-grid {
        flex-direction: column;
        gap: 2.5rem;
    }
}
/* ==========================================================================
   POPRAWKI STYLU DLA KART OFERTY (IKONY Z PRZEZROCZYSTYM TŁEM)
   ========================================================================== */

.offer-card .offer-icon {
    /* 1. Ustawiamy rozmiar i gwarantujemy kwadrat */
    width: 150px;
    height: 150px;

    /* 2. Wyśrodkowanie i zachowanie proporcji */
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;

    /* 3. Odstęp od tekstu poniżej */
    margin-bottom: 0.25rem;

    /* 4. USUWAMY WSZYSTKIE STYLE TŁA I RAMKI, ABY IKONA BYŁA "CZYSTA" */
    background-color: transparent; /* Ustawiamy tło na przezroczyste */
    padding: 0;                  /* Resetujemy padding */
    border-radius: 0;            /* Resetujemy zaokrąglenie */
    box-shadow: none;              /* Resetujemy cień */
    mix-blend-mode: normal;        /* Resetujemy tryb mieszania */
}
/* --- Style dla sekcji Bonus --- */
.bonus-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.bonus-card {
    background-color: #f1f5f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 250px;
}

.bonus-value {
    font-size: 72px;      /* <-- GŁÓWNA ZMIANA: Zwiększa rozmiar cyfry */
    font-weight: 700;     /* <-- DODATKOWO: Pogrubia cyfrę */
    color: #003781;       /* <-- DODATKOWO: Używa głównego koloru Twojej marki */
    line-height: 1.1;     /* <-- DODATKOWO: Zmniejsza odstęp nad i pod cyfrą */
    margin: 0 0 0.5rem 0; /* <-- DODATKOWO: Lekki margines na dole */
}

.bonus-description {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

        a.article-link {
            text-decoration: none;
            color: inherit;
        }
/* ==========================================================================
   Style dla podstrony "Wybity Ząb" (NOWY LAYOUT)
   ========================================================================== */
.triage-section {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}
.triage-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) {
    .triage-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
.btn-choice {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-choice:nth-child(1) { background-color: #f0fdfa; color: #134e4a; }
.btn-choice:nth-child(2) { background-color: #fffbeb; color: #92400e; }
.btn-choice.active {
    background-color: #004080;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.hidden { display: none; }

.info-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 8px;
    border-left-width: 5px;
}
.info-card-icon { font-size: 2rem; margin-right: 1rem; }
.info-card h3 { font-size: 1.3rem; font-weight: bold; margin-bottom: 0.5rem; }
.info-card-danger { background-color: #fef2f2; border-color: #ef4444; color: #991b1b; }
.info-card-info { background-color: #eff6ff; border-color: #3b82f6; color: #1e40af; }
.info-card-success { background-color: #f0fdf4; border-color: #22c55e; color: #166534; }

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.step-card {
    display: flex;
    align-items: flex-start;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b; /* amber-500 */
}
.step-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #d97706; /* amber-600 */
    margin-right: 1rem;
    line-height: 1;
}
.step-card h3 { font-size: 1.3rem; font-weight: bold; }
.step-card p { margin-top: 0.5rem; }
.text-amber { color: #b45309; }
.text-danger { color: #dc2626; }
/* ==========================================================================
   Style dla Osi Czasu (Wybity Ząb) - WERSJA FINALNA
   ========================================================================== */

/* Poprawka dla tytułu osi czasu, aby respektował klasy z HTML */
section h2.text-center.border-b-0 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 0; /* Resetujemy domyślny margines, bo kontener ma swój */
}

.timeline-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 4rem auto; /* Zmniejszony margines, bo padding go zastąpi */
    display: flex;
    justify-content: space-between;
    padding: 100px 0; /* <-- KLUCZOWA ZMIANA: Dodaje wewnętrzną przestrzeń na tekst */
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: #cbd5e1;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    z-index: 2;
}

.timeline-point {
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #475569;
    border: 2px solid #cbd5e1;
    position: relative;
}

.timeline-point::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: #cbd5e1;
}

.timeline-content {
    position: absolute;
    width: 180%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 0 0.5rem;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #003781;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.timeline-content-top {
    bottom: 70px;
}
.timeline-item:nth-child(odd) .timeline-point::after {
    top: 100%;
}

.timeline-content-bottom {
    top: 70px;
}
.timeline-item:nth-child(even) .timeline-point::after {
    bottom: 100%;
}

.timeline-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
    border-left: 4px solid #004080;
    background-color: #f1f5f9;
    border-radius: 0 8px 8px 0;
}

/* Responsywność dla osi czasu */
@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        margin: 2rem auto;
        padding: 0;
    }
    .timeline-line {
        left: 19px;
        top: 0;
        width: 2px;
        height: 100%;
        transform: none;
    }
    .timeline-item {
        flex-direction: row;
        width: 100%;
        padding: 1.5rem 0;
        align-items: flex-start;
    }
    .timeline-point {
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
    .timeline-point::after {
        display: none;
    }
    .timeline-content {
        position: static;
        width: auto;
        left: auto;
        transform: none;
        text-align: left;
        padding: 0;
    }
}
/* === Style dla nowych, zintegrowanych sekcji "O mnie" i "Korzyści" === */

/* Styl dla przycisków w sekcji "O mnie" */
.about-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-cta-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Styl dla ikon SVG w kartach korzyści */
.benefit-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem auto;
    color: #004080; /* Dopasowanie koloru do marki */
}

.benefit-card-icon svg {
    width: 100%;
    height: 100%;
}

/* Styl dla cytatów-dowodów w kartach korzyści */
.proof-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #e0e0e0;
}

/* Poprawka responsywności dla nowej sekcji "O mnie" */
@media (max-width: 1024px) {
    #o-mnie .benefits-grid {
        flex-direction: column;
    }
}
.linia-flex {
  display: flex;
  align-items: center; /* Wycentruje pionowo tekst obu elementów */
  gap: 16px; /* Odstęp między nagłówkiem a tekstem */
}

.linia-flex h3,
.linia-flex p {
  margin: 0; /* Usuń domyślne marginesy */
}
.subsection-title {
    margin-top: 3.5rem; /* Dodaje odstęp od treści powyżej */
}
/* === Style dla tabel z zakresem usług (Akcja Junior) === */
.table-title {
    text-align: center;
    font-size: 1.5rem;
    color: #003781;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.table-wrapper {
    overflow-x: auto; /* Zapewnia responsywność tabeli na małych ekranach */
    -webkit-overflow-scrolling: touch; /* Płynne przewijanie na iOS */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    line-height: 1.5;
}

.services-table thead tr {
    background-color: #004080;
    color: #ffffff;
    text-align: left;
}

.services-table th,
.services-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.services-table tbody tr:last-child td {
    border-bottom: none;
}

.services-table tbody tr:nth-of-type(even) {
    background-color: #f8fafc;
}

.services-table td:first-child {
    font-weight: 600;
    color: #333;
}

.table-footnote {
    font-size: 0.9rem;
    text-align: center;
    color: #555;
    margin-top: 1rem;
}
/* === Style dla nowej podstrony NNW dla Dorosłych === */
.benefits-adults-grid {
    /* Używa klasy offer-grid, ale z mniejszymi odstępami dla bardziej zwartego wyglądu */
    gap: 1.5rem 2.5rem;
}

.benefits-adults-grid .benefit-item-compact h3 {
    font-size: 1.2rem;
    color: #003781;
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.benefits-adults-grid .benefit-item-compact p {
    margin: 0;
    line-height: 1.5;
    color: #333;
}

/* Dostosowanie ikony w kompaktowej liście benefitów (ikony nie były w projekcie, więc zostawiamy pusty placeholder do ewentualnego uzupełnienia) */
.benefits-adults-grid .benefit-item-compact .benefit-card-icon {
    display: none; /* Domyślnie ukrywa ikonę, jeśli nie masz gotowych grafik */
}

/* Opcjonalnie: jeśli dodasz ikony 40x40, odkomentuj ten blok */
/*
.benefits-adults-grid .benefit-item-compact {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
}

.benefits-adults-grid .benefit-item-compact .benefit-card-icon {
    display: block;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: #004080;
}
*/
/* === Style dla nowej podstrony NNW dla Dorosłych === */
.benefits-adults-grid {
    gap: 1.5rem 2.5rem;
}

/* Ten blok jest kluczowy - zapewnia, że ikony będą widoczne i dobrze sformatowane */
.benefits-adults-grid .benefit-item-compact {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
}

.benefits-adults-grid .benefit-item-compact .benefit-card-icon {
    display: block;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: #004080;
}

.benefits-adults-grid .benefit-item-compact h3 {
    font-size: 1.2rem;
    color: #003781;
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.benefits-adults-grid .benefit-item-compact p {
    margin: 0;
    line-height: 1.5;
    color: #333;
}
/* === Style dla sekcji "Proste Zgłoszenie Szkody" === */
.claim-process-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* Odstęp między poszczególnymi krokami */
}

.claim-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.claim-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #f1f5f9; /* Jasnoszare tło, jak w ikonach benefitów */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004080; /* Kolor ikony */
}

.claim-icon svg {
    width: 28px;
    height: 28px;
}

.claim-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #003781;
}

.claim-content p,
.claim-content ul {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.7;
}

.claim-content ul {
    padding-left: 20px;
}

.claim-contact-list {
    list-style: none;
    padding-left: 0;
}

.claim-contact-list li {
    margin-bottom: 0.5rem;
}
/* === Style dla kompaktowej listy korzyści / usług === */
.benefit-item-compact {
    display: flex;
    align-items: flex-start; /* Wyrównuje tekst do góry ikony */
    text-align: left;
    gap: 1.25rem; /* Odstęp między ikoną a tekstem */
}

.benefit-item-compact .benefit-card-icon {
    flex-shrink: 0; /* Zapobiega kurczeniu się ikony */
    width: 40px;
    height: 40px;
    color: #004080;
}

.benefit-item-compact h3 {
    color: #003781;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.25rem;
    min-height: auto; /* Resetuje wysokość z klasy .offer-card */
}
    
.benefit-item-compact p {
    margin: 0;
    line-height: 1.5;
}