 /* ==========================================================================
           GLOBAL STYLES
           ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #212529;
            overflow-x: hidden;
        }
        
        h1 {
            font-size: 61px;
            font-weight: 700;
            line-height: 1.1;
        }
        
        h2 {
            font-size: 40px;
            font-weight: 700;
        }
        
        h3 {
            font-size: 32px;
            font-weight: 700;
        }
        
        h4 {
            font-size: 30px;
        }
        
        h5 {
            font-size: 27px;
        }
        
        h6 {
            font-size: 20px;
        }
        
        p {
            font-size: 16px;
            color: #818697;
            line-height: 1.7;
        }
        
        .space {
            padding: 90px 0;
        }
        
        /* ==========================================================================
           NAVBAR - PROSTA WERSJA
           ========================================================================== */
        .navbar-section {
            background: #fff;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-size: 28px;
            font-weight: 700;
            color: #F97794 !important;
        }
        
        .navbar-brand img {
            max-height: 50px;
        }
        
        .navbar-toggler {
            border: none;
            padding: 8px 12px;
        }
        
        .navbar-toggler:focus {
            outline: none;
            box-shadow: none;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            color: #212529;
            padding: 10px 20px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link.active {
            font-weight: 700;
        }
        
        .navbar-nav .nav-link:hover {
            color: #F97794;
        }
        
        /* ==========================================================================
           HERO SECTION - PROSTY FLEXBOX LAYOUT
           ========================================================================== */
        .hero-section {
            position: relative;
            min-height: 600px;
            background: linear-gradient(135deg, #fef9f8 0%, #fef4f7 100%);
            overflow: hidden;
        }
        
        /* Desktop - 2 kolumny obok siebie */
        @media (min-width: 992px) {
            .hero-section {
                display: flex;
                align-items: center;
                min-height: 700px;
            }
            
            .hero-section .container {
                width: 100%;
            }
            
            .hero-content-wrapper {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            
            .hero-text {
                flex: 0 0 45%;
                padding-right: 40px;
            }
            
            .hero-image {
                flex: 0 0 55%;
                position: relative;
            }
            
            .hero-image img {
                width: 100%;
                max-width: 700px;
                height: auto;
                transform: translateX(50px);
            }
        }
        
        /* Mobile - SVG na górze, tekst pod spodem */
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 40px 0 60px;
                text-align: center;
            }
            
            .hero-image {
                margin-bottom: 40px;
            }
            
            .hero-image img {
                width: 100%;
                max-width: 500px;
                height: auto;
                margin: 0 auto;
                display: block;
            }
            
            .hero-text {
                padding: 0 20px;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-section {
                padding: 30px 0 50px;
            }
            
            .hero-image img {
                max-width: 100%;
            }
        }
        
        /* Hero Text Styling */
        .hero-subtitle {
            color: #9b9b9b;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .hero-title {
            font-size: 61px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
            color: #212529;
        }
        
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 48px;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 40px;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 37px;
            }
        }
        
        /* ==========================================================================
           BUTTONS
           ========================================================================== */
        .btn-danger {
            padding: 16px 30px;
            margin: 20px 0 0;
            background: linear-gradient(135deg, #eda384 0%, #f40f7e 100%);
            box-shadow: 0px 0px 29px -13px #f40f7c;
            border: none;
            transition: all 0.3s;
            font-weight: 700;
            border-radius: 4px;
        }
        
        .btn-danger:hover {
            background: linear-gradient(45deg, #eda384 0%, #f40f7e 100%);
            box-shadow: 0px 4px 35px -10px #f40f7c;
            transform: translateY(-2px);
        }
        
        .btn-danger:focus {
            box-shadow: none;
        }
        
        .btn-success {
            background: #26cfa2;
            border: none;
            padding: 16px 30px;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(38, 207, 162, 0.3);
        }
        
        .btn-success:hover {
            background: #20b88e;
            transform: translateY(-2px);
        }
        
        /* ==========================================================================
           NEW INSURANCE SECTION
           ========================================================================== */
        .bg-image {
            position: relative;
            background: #f8f9fa;
        }
        
        .banner-img-2 {
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 0;
            width: 50%;
        }
        
        @media (max-width: 1199.98px) {
			.banner-img-2 {
				position: relative;  /* ✅ Zmienione z absolute */
				width: 100%;
				left: auto;
				bottom: auto;
				margin-top: 20px;
			}
		}

		@media (max-width: 991.98px) {
			.banner-img-2 {
				position: relative;  /* ✅ Zmienione z absolute */
				width: 100%;
				left: auto;
				bottom: auto;
				margin-top: 20px;
			}
		}
        
        .banner-img-2 img {
            transform: rotateY(180deg);
            width: 100%;
        }
		
		@media (min-width: 576px) and (max-width: 1199.98px) {
			.banner-img-2 {
				width: 50%;  /* ✅ 70% zamiast 100% */
				margin-left: auto;
				margin-right: auto;
			}
		}
        
        .center-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .center-title p {
            color: #bbbdc6;
            font-size: 16px;
        }
        
        .insurance-title_wrap {
            padding: 32px 0;
            position: relative;
            z-index: 10;
        }
        
        @media (max-width: 991.98px) {
            .insurance-title_wrap {
                padding: 12px 0 0px;
            }
        }
        
        @media (max-width: 767.98px) {
            .insurance-title_wrap {
                padding: 12px 0 0px;
            }
        }
        
        @media (max-width: 575.98px) {
            .insurance-title_wrap {
                padding: 12px 0 0px;
            }
        }
        
        @media (max-width: 480px) {
            .insurance-title_wrap {
                padding: 12px 0 0px;
            }
        }
        
        .insurance-title_wrap h5 {
            color: #2b7fff;
            font-weight: 700;
            margin: 0 0 24px;
            line-height: 1.3;
        }
        
        .insurance-title_wrap h6 {
            font-size: 20px;
            margin: 0 0 10px;
            color: #212529;
            font-weight: 600;
        }
        
        .insurance-para {
            margin: 0 0 30px;
            color: #818697;
        }
        
        /* Checkmarks w zielonych kółkach */
        .insurance-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .insurance-item-icon {
            width: 40px;
            height: 40px;
            background: #daffd3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 15px;
        }
        
        .insurance-item-icon i {
            color: #26cfa2;
            font-size: 18px;
        }
        
        .insurance-item-text {
            flex: 1;
        }
        
        .insurance-item-text h6 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #212529;
        }
        
        .insurance-item-text p {
            margin: 0;
            font-size: 15px;
            color: #818697;
        }
        
        /* ==========================================================================
           CHOOSE YOUR INSURANCE
           ========================================================================== */
        .item-box {
            text-align: center;
            background: #fff;
            padding: 40px 30px;
            margin: 30px 0 0;
            border-radius: 10px;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .item-box:hover {
            box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .item-box h6 {
            margin: 25px 0 15px;
            font-size: 20px;
            font-weight: 700;
            color: #212529;
        }
        
        .item-box p {
            font-size: 15px;
            color: #818697;
            margin: 0;
        }
        
        .item-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        
        .item-icon i {
            font-size: 40px;
        }
        
        .color1 { background: #b0f3ff; color: #00a8cc; }
        .color2 { background: #fbd1ff; color: #d946ef; }
        .color3 { background: #daffd3; color: #26cfa2; }
        .color4 { background: #fff4b4; color: #f6c25f; }
        .color5 { background: #ffdad1; color: #ff6b6b; }
        .color6 { background: #d3d3ff; color: #6366f1; }
        
        /* ==========================================================================
           SIMPLIFIED CLAIMS (HOW IT WORKS)
           ========================================================================== */
        .howit-block {
            text-align: center;
            padding: 40px 20px;
            position: relative;
        }
        
        .howit-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 60px;
            font-weight: 700;
            color: rgba(0,0,0,0.15);
        }
        
        .howit-block h6 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #212529;
        }
        
        .howit-block p {
            color: #818697;
            font-size: 15px;
        }
        
        .howit-divider {
            position: absolute;
            top: 100px;
            right: -50px;
            width: 100px;
            height: 2px;
            border-top: 2px dashed #e0e0e0;
        }
        
        @media (max-width: 767.98px) {
            .howit-divider {
                display: none;
            }
        }
        
        /* ==========================================================================
           TESTIMONIAL
           ========================================================================== */
        .testimonial-section {
            padding: 90px 0;
            background: #fff;
        }
        
        .testimonial-box {
            background: #f5f7fa;
            border-radius: 20px;
            padding: 60px;
            position: relative;
        }
        
        .testimonial-quote {
            font-size: 60px;
            color: #b0f3ff;
            margin-bottom: 20px;
            line-height: 1;
        }
        
        .testimonial-text {
            font-size: 26px;
            line-height: 1.6;
            color: #212529;
            margin-bottom: 30px;
            font-weight: 400;
        }
        
        .testimonial-author h6 {
            color: #2b7fff;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .testimonial-author p {
            color: #818697;
            font-size: 14px;
            margin: 0;
        }
        
        .testimonial-image {
            position: relative;
        }
        
        .testimonial-image img {
            width: 100%;
            border-radius: 20px;
        }
        
        @media (max-width: 991.98px) {
            .testimonial-box {
                padding: 40px 30px;
            }
            
            .testimonial-text {
                font-size: 20px;
            }
        }
        
        /* ==========================================================================
           PRICING
           ========================================================================== */
        .pricing {
            padding: 90px 0;
            background: #fff;
            position: relative;
        }
        
        .pricing-wrap {
            margin: 50px 0 0;
        }
        
        .pricing-block {
            background: #fff;
            text-align: center;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0px 5px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
        }
        
        .pricing-block:hover {
            transform: translateY(-5px);
            box-shadow: 0px 10px 40px rgba(0,0,0,0.12);
        }
        
        .pricing-block h6 {
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #818697;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .pricing-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 50px;
            font-weight: 700;
        }
        
        .pricing-icon span {
            font-size: 24px;
            vertical-align: super;
            margin-right: 5px;
        }
        
        .pricing-text {
            text-align: left;
            margin: 30px 0;
        }
        
        .pricing-text p {
            display: flex;
            align-items: center;
            margin: 12px 0;
            font-size: 15px;
            color: #212529;
        }
        
        .pricing-text i {
            margin-right: 12px;
            background: #daffd3;
            border-radius: 50%;
            padding: 6px;
            color: #26cfa2;
            font-size: 12px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .pricing-block_middle {
            transform: scale(1.1);
            position: relative;
            z-index: 10;
            margin: -42px 0 0;
        }
        
        @media (max-width: 767.98px) {
            .pricing-block_middle {
                transform: none;
                margin: 25px 0;
            }
        }
        
        .save-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #fff4b4;
            color: #f6c25f;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .btn-choose {
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 6px;
            border: none;
            transition: all 0.3s;
            margin-top: 10px;
        }
        
        .btn-choose-green {
            background: #26cfa2;
            color: #fff;
        }
        
        .btn-choose-green:hover {
            background: #20b88e;
            color: #fff;
        }
        
        .btn-choose-coral {
            background: #ffae8c;
            color: #fff;
        }
        
        .btn-choose-coral:hover {
            background: #ea9b79;
            color: #fff;
        }
        
        .btn-choose-blue {
            background: #2b7fff;
            color: #fff;
        }
        
        .btn-choose-blue:hover {
            background: #1a6eee;
            color: #fff;
        }
        
        /* ==========================================================================
           FAQ / ACCORDION
           ========================================================================== */
        .accordion-item {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .accordion-button {
            padding: 20px 25px;
            color: #2b7fff;
            font-weight: 600;
            font-size: 16px;
            background: none;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            color: #2b7fff;
            background-color: #fff;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: #e0e0e0;
        }
        
        .accordion-button.collapsed {
            color: #818697;
        }
        
        .accordion-body {
            padding: 20px 25px;
            color: #818697;
            line-height: 1.8;
            font-size: 15px;
        }
        
        .faq-image {
            text-align: right;
        }
        
        .faq-image img {
            max-width: 100%;
            height: auto;
        }
        
        /* ==========================================================================
           CTA SECTION
           ========================================================================== */
        .cta-section {
            padding: 80px 0;
            background: #fff;
            position: relative;
        }
        
        .cta-box {
            background: #fff;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .cta-icon {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
        }
        
        .cta-icon img {
            width: 100%;
            height: 100%;
        }
        
        .cta-content {
            flex: 1;
        }
        
        .cta-content h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #212529;
        }
        
        .cta-content p {
            margin: 0;
            color: #818697;
        }
        
        .cta-button {
            flex-shrink: 0;
        }
        
        @media (max-width: 767.98px) {
            .cta-box {
                flex-direction: column;
                text-align: center;
                padding: 40px 30px;
            }
        }
        
        .cta-bg-image {
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: -1;
            width: 40%;
            max-width: 569px;
        }
        
        @media (max-width: 991.98px) {
            .cta-bg-image {
                display: none;
            }
        }
        
        /* ==========================================================================
           FOOTER
           ========================================================================== */
        footer {
            padding: 60px 0 30px;
            background: #f0f2f6;
        }
        
        .footer-title {
            margin-bottom: 30px;
        }
        
        .footer-title h6 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #212529;
        }
        
        .footer-title p,
        .footer-title a {
            color: #818697;
            font-size: 15px;
            line-height: 1.8;
        }
        
        .footer-title a {
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-title a:hover {
            color: #2b7fff;
        }
        
        .footer-title ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-title ul li {
            margin-bottom: 10px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid #e0e0e0;
        }
        
        .copyright p {
            color: #818697;
            font-size: 14px;
            margin: 0;
        }
        
        /* ==========================================================================
           RESPONSIVE
           ========================================================================== */
        @media (max-width: 991.98px) {
            h1 {
                font-size: 38px;
            }
			
			h2 {
                font-size: 32px;
            }
            
            h3 {
                font-size: 28px;
            }
            
            .space {
                padding: 40px 0;
            }
        }
        
        @media (max-width: 767.98px) {
            .item-box {
                padding: 30px 20px;
            }
        }
		@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}

/* ===== Ochrona życia ===== */

.life-section{
    background:#FFF0F4;
    padding:80px 0;
    text-align:center;
}

.life-title h2{
    font-size:40px;
    font-weight:800;
    color:#d6336c;
    margin-bottom:10px;
    letter-spacing:0.5px;
}

.life-title p{
    color:#777;
    margin-bottom:50px;
    font-size:18px;
}

.life-items{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.life-item{
    background:white;
    padding:16px 28px;
    border-radius:30px;
    font-size:18px;
    color:#444;
    position:relative;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

/* przekreślenie */
.life-item::after{
    content:"";
    position:absolute;
    left:12%;
    right:12%;
    top:50%;
    height:2px;
    background:rgba(230,57,70,0.35);
}

/* lekki hover */
.life-item:hover{
    transform:translateY(-2px);
    transition:0.2s;
}
.copy-icon { 
    cursor: pointer;
    margin-left: 6px;
    color: #888;
    transition: color 0.2s;
}

.copy-icon:hover {
    color: #e91e63; /* pasuje do różowej strony */
}

.copy-msg {
    display: none;
    margin-left: 8px;
    font-size: 12px;
    color: #28a745;
}