.elementor-517 .elementor-element.elementor-element-2fac804 > .elementor-container{max-width:1200px;}/* Start custom CSS for html, class: .elementor-element-708c686 *//* Kontener główny - bez zewnętrznych marginesów */
.abr-wrapper {
    width: 100%;
    color: #4a4a4a;
}

/* Plakietka z lokalizacją (Odwzorowana z obrazka) */
.abr-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #E8F4F1; /* Jasny miętowy */
    color: #0E927A; /* Szmaragdowy */
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Nagłówek główny (Odwzorowany z obrazka) */
.abr-title {
    color: #005487; /* Granatowy */
    font-size: 2.8em;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

/* Sub-tytuł (Odwzorowany z obrazka) */
.abr-title span {
    color: #0E927A; /* Szmaragdowy */
    font-weight: 400;
    font-size: 0.9em;
}

/* Separator w nagłówku (Odwzorowany z obrazka) */
.abr-separator {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 15px 0 25px 0;
}

.abr-separator .dot {
    width: 6px;
    height: 6px;
    background-color: #0E927A;
    border-radius: 50%;
}

.abr-separator .line {
    height: 1.5px;
    background-color: #0E927A;
    width: 70px;
    margin-left: 2px;
}

/* Teksty nagłówkowe i akapitowe */
.hero-lead {
    font-weight: 700;
    color: #4a4a4a;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.hero-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Ramka wyróżniająca (Odwzorowana z obrazka) */
.location-highlight {
    background-color: #F2F6F8; /* Jasny szaro-niebieski */
    border-left: 4px solid #005487; /* Granatowy pasek */
    padding: 20px 25px;
    color: #4a4a4a;
    line-height: 1.6;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
    margin-bottom: 40px;
}
.location-highlight p {
    margin: 0;
}

/* Nagłówki sekcji (Ujednolicone z nową paletą) */
.abr-heading {
    color: #005487;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.abr-subheading {
    color: #005487;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Układ kolumnowy Wskazań */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0 40px 0;
}
.sym-card {
    background: transparent;
    padding: 25px;
    border: 1px solid #E8F4F1;
    border-top: 4px solid #0E927A;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.sym-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.s-icon {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #0E927A;
}

/* Układ kolumnowy Podziału (Split) */
.abr-split-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.split-col {
    flex: 1;
    min-width: 300px;
    border: 1px solid #E8F4F1;
    background-color: #FAFCFD;
    padding: 30px;
    border-radius: 8px;
}
.col-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.col-header i {
    font-size: 2em;
    color: #005487;
}

/* Lista z ptaszkami */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #555;
}
.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.check-list li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #0E927A;
}

/* Sekcja FAQ (Akordeon) */
.abr-accordion details {
    border: 1px solid #E8F4F1;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #fff;
}
.abr-accordion summary {
    padding: 18px 20px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #005487;
}
.abr-accordion summary::-webkit-details-marker {
    display: none;
}
.abr-accordion summary::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.9em;
    color: #0E927A;
    transition: transform 0.3s;
}
.abr-accordion details[open] summary::after {
    transform: rotate(180deg);
}
.abr-accordion .a-content {
    padding: 0 20px 20px 20px;
}

/* Responsywność */
@media (max-width: 768px) {
    .abr-split-section {
        flex-direction: column;
    }
    .abr-title {
        font-size: 2.2em;
    }
}/* End custom CSS */