       /* Critical above-the-fold styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Crimson Pro', serif;
            line-height: 1.6;
            color: #1a252f;
            background-color: #ffffff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header - Critical */
        .header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
        }
  .header-right {   height: 40px;  display: flex; align-items: center; justify-content: flex-end; } .search-icon { width: 24px; height: 24px; background-size: contain; background-repeat: no-repeat; }  .search-icon::before { content: "🔍"; display: block; width: 24px; height: 24px; text-align: center; line-height: 24px; }      
        .logo {
            font-family: 'Crimson Pro', serif;
            font-size: 2.4rem;
            color: #1a252f;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            white-space: nowrap;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .logo .e-part {
            background: linear-gradient(135deg, #2980b9 0%, #1565c0 50%, #0d4377 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            font-size: 2.6rem;
            margin-right: 2px;
        }
        
        .logo .main-part {
            color: #1a252f;
            font-weight: 600;
        }
        
        .logo .domain {
            color: #7f8c8d;
            font-size: 2rem;
            font-weight: 300;
            margin-left: 1px;
        }
        
        /* Hero - Critical */
        .hero {
            background: linear-gradient(135deg, #1a252f 0%, #2c3e50 25%, #2980b9 75%, #3498db 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 35px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            opacity: 0.95;
        }
        
        .btn-primary {
            background: rgba(255,255,255,0.15);
            color: white;
            padding: 20px 45px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            display: inline-block;
            margin-top: 20px;
        }
        
        .btn-primary:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-3px);
        } 

.header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .logo:hover {
            transform: translateY(-1px);
        }
        
        .logo .e-part::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 110%;
            height: 110%;
            border: 2px solid transparent;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(41, 128, 185, 0.1), rgba(13, 67, 119, 0.1));
            z-index: -1;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .logo:hover .e-part::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .logo::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #2980b9, #1565c0, transparent);
            border-radius: 2px;
            transition: width 0.4s ease;
        }
        
        .logo:hover::after {
            width: 85%;
        }
        
        /* Navigation */
        .nav {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        
        .nav.mobile-open {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 20px;
            z-index: 1000;
            border-radius: 0 0 10px 10px;
        }
        
        .nav a {
            color: #1a252f;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 8px 5px;
            border-radius: 6px;
            position: relative;
        }
        
        .nav a:hover {
            color: #2980b9;
            background: rgba(41, 128, 185, 0.05);
        }
        
        /* Mobile menu items */
        .mobile-menu-items {
            display: none;
            flex-direction: column;
            gap: 15px;
            padding-top: 15px;
            border-top: 1px solid #e2e8f0;
            margin-top: 15px;
        }
        
        .mobile-menu-items.show {
            display: flex;
        }
        
        .mobile-login-btn, .mobile-cta-btn {
            padding: 12px 16px;
            border-radius: 8px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            text-decoration: none;
            font-weight: 600;
        }
        
        .mobile-login-btn {
            color: #1a252f;
            border: 2px solid #e2e8f0;
        }
        
        .mobile-login-btn:hover {
            border-color: #2980b9;
            color: #2980b9;
        }
        
        .mobile-cta-btn {
            background: linear-gradient(135deg, #2980b9, #1565c0);
            color: white;
            border: none;
        }
        
        .mobile-cta-btn:hover {
            background: linear-gradient(135deg, #1565c0, #0d4377);
            transform: translateY(-2px);
        }
        
        /* Icon button styles */
        .icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .icon-btn:hover {
            background: rgba(41, 128, 185, 0.1);
            transform: translateY(-1px);
        }
        
        .icon-btn svg {
            width: 20px;
            height: 20px;
            stroke: #1a252f;
            transition: all 0.3s;
        }
        
        .icon-btn:hover svg {
            stroke: #2980b9;
        }
        
        /* Search functionality */
        .search-container {
            position: relative;
        }
        
        .search-overlay {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 2px solid #2980b9;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            padding: 25px;
            width: 380px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .search-overlay.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .search-overlay::before {
            content: "";
            position: absolute;
            top: -8px;
            right: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #2980b9;
        }
        
        .search-input {
            width: 100%;
            padding: 14px 45px 14px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 25px;
            font-size: 16px;
            font-family: 'Crimson Pro', serif;
            transition: all 0.3s;
            margin-bottom: 18px;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #2980b9;
            box-shadow: 0 0 0 4px rgba(41, 128, 185, 0.1);
        }
        
        .search-submit {
            background: linear-gradient(135deg, #2980b9, #1565c0);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-family: 'Crimson Pro', serif;
            font-size: 16px;
        }
        
        .search-submit:hover {
            background: linear-gradient(135deg, #1565c0, #0d4377);
            transform: translateY(-1px);
        }
        
        .search-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 24px;
            color: #7f8c8d;
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .search-close:hover {
            background: rgba(41, 128, 185, 0.1);
            color: #2980b9;
        }
        
        .search-suggestions {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #e2e8f0;
        }
        
        .search-suggestions h4 {
            font-size: 14px;
            color: #7f8c8d;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .search-suggestion {
            padding: 8px 12px;
            color: #1a252f;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            border-radius: 6px;
            margin-bottom: 4px;
        }
        
        .search-suggestion:hover {
            color: #2980b9;
            background: rgba(41, 128, 185, 0.05);
        }
        
        /* Login button */
        .login-btn {
            color: #1a252f;
            text-decoration: none;
            font-weight: 600;
            padding: 10px 18px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            transition: all 0.3s;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .login-btn:hover {
            border-color: #2980b9;
            color: #2980b9;
            background: rgba(41, 128, 185, 0.05);
            transform: translateY(-1px);
        }
        
        .login-btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
        }
        
        /* CTA Button */
        .cta-button {
            background: linear-gradient(135deg, #2980b9, #1565c0);
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, #1565c0, #0d4377);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(41, 128, 185, 0.4);
        }
        
        /* Mobile menu button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5em;
            color: #1a252f;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .mobile-menu-btn:hover {
            background: rgba(41, 128, 185, 0.1);
            color: #2980b9;
        }
        
        /* Hero Section animations */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255,255,255,0.8);
            border-radius: 50%;
            animation: particle-float 10s infinite linear;
        }
        
        .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 3s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 4s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 0.5s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 1.5s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 2.5s; }
        .particle:nth-child(10) { left: 15%; animation-delay: 6s; }
        .particle:nth-child(11) { left: 35%; animation-delay: 7s; }
        .particle:nth-child(12) { left: 85%; animation-delay: 3.5s; }
        
        @keyframes particle-float {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) scale(1); opacity: 0; }
        }
        
        /* Watermark Icons */
        .watermark {
            position: absolute;
            width: 140px;
            height: 140px;
            opacity: 0.08;
            stroke: white;
            fill: none;
            stroke-width: 2;
            pointer-events: none;
            z-index: 1;
        }
        
        .watermark-1 {
            top: 15%;
            right: 8%;
            width: 160px;
            height: 160px;
        }
        
        .watermark-2 {
            bottom: 10%;
            left: 6%;
            width: 180px;
            height: 180px;
        }
        
        /* Content Animation */
        .hero-content {
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            animation: content-fade-in 1s ease-out forwards;
        }
        
        @keyframes content-fade-in {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
            margin-top: 45px;
        }
        
  /*      .btn-primary::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }*/
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        /* Step indicators */
        .step-indicators {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }
        
        .step-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255,255,255,0.2);
        }
        
        .step-dot.active {
            background: rgba(255,255,255,0.9);
            transform: scale(1.3);
            border-color: rgba(255,255,255,0.9);
        }
        
        .step-dot:hover {
            background: rgba(255,255,255,0.7);
            transform: scale(1.1);
        }
        
        /* Instruction steps */
        .instruction-step {
            display: none;
            animation: step-fade-in 0.8s ease-out;
        }
        
        .instruction-step.active {
            display: block;
        }
        
        @keyframes step-fade-in {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .step-number-hero {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.2);
            color: white;
            border-radius: 50%;
            line-height: 45px;
            text-align: center;
            font-weight: 700;
            margin-bottom: 25px;
            border: 2px solid rgba(255,255,255,0.3);
            font-size: 1.2rem;
            backdrop-filter: blur(10px);
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #1a252f;
            font-weight: 700;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2980b9, #1565c0);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 60px;
            color: #7f8c8d;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }
        
        .service-card {
            background: white;
            padding: 40px 35px;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(41, 128, 185, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(41, 128, 185, 0.05), transparent);
            transition: left 0.5s;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(41, 128, 185, 0.15);
            border-color: rgba(41, 128, 185, 0.2);
        }
        
        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            display: block;
            filter: grayscale(0);
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
        }
        
        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 18px;
            color: #1a252f;
            font-weight: 600;
        }
        
        .service-card p {
            color: #7f8c8d;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #2980b9 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .stats::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
            background-size: 50px 50px;
            animation: drift 20s infinite linear;
        }
        
        @keyframes drift {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(50px) translateY(50px); }
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .stat-item {
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
        }
        
        .stat-item h3 {
            font-size: 3.5rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 12px;
            font-weight: 700;
            text-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        
        .stat-item p {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 500;
        }
        
        /* Enhanced styles for new content section */
        
        /* Latest Content Section */
        .latest-content {
            padding: 0 0 100px 0;
            background: #ffffff;
        }
        
        /* Featured Section */
        .dual-featured {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 35px;
            margin-bottom: 60px;
        }
        
        .featured-item {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            height: 380px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .featured-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 70px rgba(0,0,0,0.2);
        }
        
        .featured-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: brightness(0.4);
            transition: all 0.3s;
        }
        
        .featured-item:hover .featured-bg {
            filter: brightness(0.3);
            transform: scale(1.05);
        }
        
        .featured-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
       /*     background: linear-gradient(135deg, rgba(26, 37, 47, 0.7), rgba(41, 128, 185, 0.7));*/
        }
        
        .featured-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 45px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .featured-tag {
            background: rgba(255,255,255,0.2);
            color: white;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 25px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .featured-title , .featured-title a{
            font-size: 2rem;
            font-weight: 700;
                color: white;
            margin-bottom: 18px;
            line-height: 1.3;
            transition: all 0.3s;
        }
        
        .featured-title a:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }        
        
        .featured-excerpt {
            font-size: 1.15rem;
            opacity: 0.95;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        .featured-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .featured-date {
            color: rgba(255,255,255,0.8);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
        }
        
        .featured-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 12px 24px;
            border-radius: 25px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(10px);
        }
        
        .featured-link:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        /* Content Sections */
        .content-section {
            margin-bottom: 60px;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 35px;
            padding: 30px 0;
            border-bottom: 3px solid #2980b9;
            position: relative;
        }
        
        .section-header::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background: #1565c0;
        }
        
        .section-header h3 {
            font-size: 2rem;
            color: #1a252f;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .view-all {
            color: #2980b9;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 2px solid transparent;
            padding: 10px 20px;
            border-radius: 25px;
        }
        
        .view-all:hover {
            color: #1565c0;
            border-color: #1565c0;
            background: rgba(41, 128, 185, 0.05);
            transform: translateX(3px);
        }

        /* Articles Grid */
        .articles-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }
        
        .row-article {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(41, 128, 185, 0.1);
            position: relative;
        }
        
        .row-article::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(41, 128, 185, 0.05), transparent);
            transition: left 0.5s;
            z-index: 1;
        }
        
        .row-article:hover::before {
            left: 100%;
        }
        
        .row-article:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(41, 128, 185, 0.15);
        }
        
        .article-image {
            width: 100%;
            height: 220px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }
        
        .article-image::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(26, 37, 47, 0.1) 100%);
            transition: all 0.3s;
        }
        
        .row-article:hover .article-image::after {
            background: linear-gradient(to bottom, transparent 0%, rgba(26, 37, 47, 0.2) 100%);
        }
        
        .article-content-sg {
            padding: 30px;
            position: relative;
            z-index: 2;
        }
        
        .category-tag {
            background: linear-gradient(135deg, rgba(41, 128, 185, 0.1), rgba(21, 101, 192, 0.1));
            color: #2980b9;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
            display: inline-block;
            border: 1px solid rgba(41, 128, 185, 0.2);
        }
        
        .article-title-sg {
            font-size: 1.4rem;
            color: #1a252f;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: all 0.3s;
        }
        
        .article-title-link {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
        }
        
        .article-title-link:hover {
            color: #2980b9;
        }
        
        .article-title-link:hover .article-title-sg {
            transform: translateY(-2px);
        }
        
        .article-excerpt {
            color: #7f8c8d;
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .article-meta-enhanced {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .meta-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .article-date {
            color: #7f8c8d;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .author-info {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        
        .read-more {
            color: #2980b9;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-bottom: 2px solid transparent;
            padding-bottom: 2px;
        }
        
        .read-more:hover {
            color: #1565c0;
            border-bottom-color: #1565c0;
            transform: translateX(5px);
        }

        /* Q&A Section */
        .qa-section {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            border-radius: 20px;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }
        
        .qa-section::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(41, 128, 185, 0.05) 0%, transparent 70%);
            z-index: 1;
        }
        
        .qa-grid {
            display: grid;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .qa-item {
            background: white;
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            border-left: 5px solid #2980b9;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }
        
        .qa-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(41, 128, 185, 0.03), transparent);
            transition: left 0.5s;
        }
        
        .qa-item:hover::before {
            left: 100%;
        }
        
        .qa-item:hover {
            transform: translateX(8px);
            box-shadow: 0 15px 40px rgba(41, 128, 185, 0.1);
            border-left-color: #1565c0;
        }
        
        .qa-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 18px;
        }
        
        .qa-title {
            color: #1a252f;
            font-size: 1.4rem;
            font-weight: 600;
            line-height: 1.4;
            flex: 1;
            transition: all 0.3s;
        }
        
        .qa-title:hover {
            color: #2980b9;
        }
        
        .qa-toggle {
            background: linear-gradient(135deg, #2980b9, #1565c0);
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
            margin-left: 20px;
            box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
        }
        
        .qa-toggle:hover {
            background: linear-gradient(135deg, #1565c0, #0d4377);
            transform: scale(1.1);
        }
        
        .qa-toggle.active {
            transform: rotate(45deg);
        }
        
        .qa-question {
            color: #7f8c8d;
            font-size: 1.15rem;
            line-height: 1.6;
            margin-bottom: 25px;
            padding-left: 25px;
            position: relative;
        }
        
        .qa-question::before {
            content: "P:";
            position: absolute;
            left: 0;
            top: 0;
            background: rgba(41, 128, 185, 0.1);
            color: #2980b9;
            padding: 3px 8px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 700;
        }
        
        .qa-answer {
            color: #7f8c8d;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
            padding-left: 25px;
            position: relative;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
        }
        
        .qa-answer.active {
            max-height: 500px;
            opacity: 1;
        }
        
        .qa-answer::before {
            content: "O:";
            position: absolute;
            left: 0;
            top: 0;
            background: rgba(21, 101, 192, 0.1);
            color: #1565c0;
            padding: 3px 8px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 700;
        }
        
        .qa-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .qa-category {
            background: rgba(41, 128, 185, 0.1);
            color: #2980b9;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(41, 128, 185, 0.2);
        }

        /* Popular Questions Sidebar */
        .content-with-sidebar {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 50px;
            margin-top: 60px;
        }
        
        .sidebar-container {
            max-width: 400px;
            width: 100%;
        }
        
        .sidebar {
            background: linear-gradient(135deg, #2f3640 0%, #40739e 25%, #487eb0 50%, #5dade2 100%);
            color: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        
        /* Subtle background pattern */
        .sidebar::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 25% 25%, rgba(93, 173, 226, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(72, 126, 176, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .sidebar h3 {
            color: white;
            font-size: 1.7rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            font-weight: 600;
            z-index: 2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .sidebar h3::after {
            content: "";
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: linear-gradient(90deg, #487eb0, #5dade2);
            border-radius: 2px;
        }
        
        /* Popular Topics Section */
        .popular-section {
            margin-bottom: 40px;
            background: rgba(255,255,255,0.08);
            padding: 25px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            z-index: 2;
        }
        
        .popular-section h4 {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .popular-item {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .popular-item:hover {
            transform: translateX(5px);
        }
        
        .popular-number {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 2px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .popular-item a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-size: 1.1rem;
            line-height: 1.5;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .popular-item a:hover {
            color: #ffffff;
            transform: translateY(-1px);
        }
        
        /* Categories Sections */
        .section {
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }
        
        .section-title {
         /*   color: white; */
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
        }
        
        .section-title::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #487eb0, #5dade2);
            border-radius: 20px 20px 0 0;
        }
        
        .tag {
            display: inline-block;
            background: rgba(72, 126, 176, 0.25);
            color: #b8d4ed;
            padding: 14px 20px;
            border-radius: 25px;
            font-size: 1.1rem;
            margin: 8px 8px 8px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(72, 126, 176, 0.4);
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }
        
        .tag::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .tag:hover::before {
            left: 100%;
        }
        
        .tag:hover {
            background: rgba(72, 126, 176, 0.5);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(72, 126, 176, 0.3);
        }
        
        .more-link {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 20px;
            transition: all 0.3s ease;
            margin-top: 15px;
            font-weight: 500;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
        }
        
        .more-link:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(8px);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .arrow {
            transition: transform 0.3s ease;
        }
        
        .more-link:hover .arrow {
            transform: translateX(3px);
        }

        /* Icons */
        .icon-svg {
            width: 22px;
            height: 22px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: all 0.3s;
        }
        
        .icon-large {
            width: 26px;
            height: 26px;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
            color: #a0aec0;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>') repeat;
            background-size: 40px 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }
        
        .footer-section h4 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
            font-weight: 600;
            position: relative;
        }
        
        .footer-section h4::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #2980b9, #1565c0);
            border-radius: 1px;
        }
        
        .footer-section p {
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
            padding: 8px 0;
            border-radius: 6px;
            font-size: 1.05rem;
        }
        
        .footer-section a:hover {
            color: #3498db;
            transform: translateX(5px);
            padding-left: 10px;
        }
        
        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 30px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .footer-bottom p {
            font-size: 1rem;
            opacity: 0.8;
        }
        
        /* Newsletter Section styles */
        .newsletter-section {
            background: linear-gradient(135deg, #2980b9, #1565c0);
            color: white;
            padding: 80px 0;
        }
        
        .newsletter-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .newsletter-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        
        .newsletter-form input[type="email"] {
            flex: 1;
            min-width: 250px;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-family: 'Crimson Pro', serif;
        }
        
        .newsletter-form button {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
            white-space: nowrap;
        }
        
        .newsletter-form button:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }
        
        .newsletter-note {
            font-size: 0.9rem;
            margin-top: 20px;
            opacity: 0.7;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-with-sidebar {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .sidebar {
                position: static;
            }
            
            .articles-row {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {

            .sidebar {
                padding: 30px 25px;
            }
            
            .sidebar h3 {
                font-size: 1.5rem;
            }
            
            .popular-section h4 {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 1.1rem;
            }
            
            .popular-section, .section {
                padding: 20px;
            }
            
            .tag {
                padding: 12px 16px;
                font-size: 1rem;
            }            
            
            .nav {
                display: none;
            }
            
            .nav.mobile-open {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-right {
                gap: 15px;
            }
            
            /* Hide login and CTA buttons on mobile */
            .login-btn,
            .cta2-button {
                display: none !important;
            }
            
            .search-overlay {
                width: 300px;
                right: -20px;
                padding: 20px;
            }
            
            .logo {
                font-size: 1.8rem;
            }
            
            .logo .e-part {
                font-size: 2rem;
            }
            
            .logo .domain {
                font-size: 1.5rem;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
                max-width: 90%;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .btn-primary {
                width: 100%;
                max-width: 300px;
                text-align: center;
                padding: 18px 35px;
                font-size: 1.1rem;
            }
            
            .watermark {
                width: 100px;
                height: 100px;
            }
            
            .watermark-1, .watermark-2 {
                width: 120px;
                height: 120px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .service-card {
                padding: 30px 25px;
            }
            
            /* New content responsive */
            .dual-featured {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .featured-item {
                height: auto;
            }
            
            .articles-row {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .featured-content {
                padding: 30px;
            }
            
            .featured-title {
                font-size: 1.6rem;
            }
            
            .featured-meta {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .qa-item {
                padding: 25px;
            }
            
            .qa-section {
                padding: 35px 25px;
            }
            
            .qa-title {
                font-size: 1.25rem;
            }
            
            .qa-header {
                align-items: flex-start;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .view-all {
                align-self: flex-start;
            }
            
            .newsletter-form {
                flex-direction: column;
                align-items: center;
            }
            
            .newsletter-form input[type="email"] {
                min-width: 100%;
                margin-bottom: 15px;
            }
            
            .newsletter-form button {
                width: 100%;
                max-width: 250px;
            }
        }
  /*nasze uslugi */
  
         .services-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #e2e8f0 100%);
            position: relative;
            border-radius: 30px;
            box-shadow: 0 20px 80px rgba(0,0,0,0.08);
        }
        
        .services-title {
            text-align: center;
            font-size: 3.2rem;
            margin-bottom: 60px;
            color: #1a252f;
            font-weight: 700;
            position: relative;
        }
        
        .services-title::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #2980b9, #1565c0);
            border-radius: 3px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            align-items: stretch;
            margin-bottom: 60px;
        }
        
        .service-card {
            background: white;
            border-radius: 25px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(41, 128, 185, 0.1);
            position: relative;
            overflow: hidden;
            height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }
        
        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #2980b9, #1565c0);
        }
        
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(41, 128, 185, 0.15);
            border-color: rgba(41, 128, 185, 0.3);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(41, 128, 185, 0.1), rgba(21, 101, 192, 0.1));
            border: 3px solid #2980b9;
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #2980b9, #1565c0);
            transform: rotate(5deg) scale(1.1);
        }
        
        .service-icon svg {
            width: 40px;
            height: 40px;
            stroke: #2980b9;
            fill: none;
            stroke-width: 2;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon svg {
            stroke: white;
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            color: #1a252f;
            margin-bottom: 18px;
            font-weight: 600;
        }
        
        .service-card p {
            color: #7f8c8d;
            font-size: 1.05rem;
            line-height: 1.6;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }
        
        /* Specjalna karta "Inne sprawy" */
        .service-card.other-services {
            background: linear-gradient(135deg, #2980b9, #1565c0);
            color: white;
            border: none;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
        }
        
        .service-card.other-services::before {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .service-card.other-services::after {
            content: "";
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        }
        
        .service-card.other-services .service-icon {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }
        
        .service-card.other-services:hover .service-icon {
            background: rgba(255, 255, 255, 0.3);
            border-color: white;
            transform: rotate(-5deg) scale(1.1);
        }
        
        .service-card.other-services .service-icon svg {
            stroke: rgba(255, 255, 255, 0.9);
        }
        
        .service-card.other-services:hover .service-icon svg {
            stroke: white;
        }
        
        .service-card.other-services h3 {
            color: white;
        }
        
        .service-card.other-services p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .service-card.other-services:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 80px rgba(41, 128, 185, 0.3);
        }
        
        /* Duży przycisk CTA */
        .cta-section {
            text-align: center;
            margin-top: 60px;
            position: relative;
        }
        
        .cta-title {
            font-size: 2.2rem;
            color: #1a252f;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #2980b9, #1565c0);
            color: white;
            padding: 25px 50px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.3rem;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(41, 128, 185, 0.3);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }
        
        .cta-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 60px rgba(41, 128, 185, 0.4);
            background: linear-gradient(135deg, #1565c0, #0d4377);
        }
        
        .cta-button svg {
            width: 24px;
            height: 24px;
            stroke: white;
            fill: none;
            stroke-width: 2;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover svg {
            transform: scale(1.1);
        }
        
        /* Animowane ikony w tle */
        .floating-icons {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-icon {
            position: absolute;
            opacity: 0.05;
            animation: float 15s infinite linear;
        }
        
        .floating-icon:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .floating-icon:nth-child(2) {
            top: 20%;
            right: 10%;
            animation-delay: 3s;
        }
        
        .floating-icon:nth-child(3) {
            bottom: 30%;
            left: 15%;
            animation-delay: 6s;
        }
        
        .floating-icon:nth-child(4) {
            bottom: 15%;
            right: 20%;
            animation-delay: 9s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(5deg);
            }
            50% {
                transform: translateY(-10px) rotate(-3deg);
            }
            75% {
                transform: translateY(-15px) rotate(2deg);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .services-title {
                font-size: 2.5rem;
            }
            
            .service-card {
                height: 260px;
                padding: 25px 20px;
            }
            
            .cta-button {
                padding: 20px 40px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-card {
                height: 240px;
                padding: 25px 20px;
            }
            
            .services-section {
                padding: 60px 0;
            }
            
            .cta-button {
                padding: 18px 35px;
                font-size: 1.1rem;
                gap: 12px;
            }
            .cta2-button{
                display: none;
            }
            
            .latest-content .container {
                padding: 0px;
            }
            .breadcrumbs {
                display: none;
            }
            

        }
  /*nasze uslugi */
        
        /* Performance optimizations */
        * {
            will-change: auto;
        }
        
        .service-card:hover,
        .row-article:hover,
        .featured-item:hover,
        .qa-item:hover {
            will-change: transform, box-shadow;
        }
        
        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* High contrast mode */
        @media (prefers-contrast: high) {
            .logo .e-part {
                background: #0066cc !important;
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                text-shadow: none;
            }
            
            .btn-primary {
                border-color: white !important;
                background: rgba(0, 102, 204, 0.3) !important;
            }
        }
        
        /* Print styles */
        @media print {
            .header, .footer, .hero, .stats, .particles, .watermark, .newsletter-section {
                display: none !important;
            }
            
            .container {
                max-width: none !important;
                margin: 0 !important;
                padding: 0 !important;
            }
            
            .section-title {
                color: black !important;
            }
            
            .service-card, .row-article {
                box-shadow: none !important;
                border: 1px solid #ddd !important;
            }
        }
  /* artykuly */      

  .article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    overflow-x: hidden;
}

  
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3.125rem;
    margin-top: 2.5rem;
    max-width: 100%;
    overflow-x: hidden;
}

.main-content {
    background: white;
    border-radius: 0.9375rem;
    padding: 2.5rem;
    box-shadow: 0 0.5rem 1.875rem rgba(0,0,0,0.08);
    border: 1px solid rgba(41, 128, 185, 0.1);
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8fafc;
    padding: 0.9375rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #1565c0;
}

.breadcrumb-separator {
    color: #7f8c8d;
}

.breadcrumb-current {
    color: #1a252f;
    font-weight: 500;
}

/* Article header */
.article-header {
/*    margin-bottom: 2.5rem;
    padding-bottom: 1.875rem;
    border-bottom: 2px solid #e2e8f0;*/
}

.article-title {
    font-size: 2.8rem;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5625rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 1rem;
}

.meta-item svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
}

.article-tags {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}


/* Article content styles */
.article-content h2 {
    color: #1a252f;
    font-size: 2.2rem;
    margin: 2.8125rem 0 1.5625rem;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid #2980b9;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
}

.article-content h3 {
    color: #1a252f;
    font-size: 1.8rem;
    margin: 2.1875rem 0 1.125rem;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
}

.article-content h4 {
    color: #1a252f;
    font-size: 1.5rem;
    margin: 1.75rem 0 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
}

.article-content p {
    margin-bottom: 1.375rem;
    line-height: 1.7;
    font-size: 1.1875rem;
    text-align: justify;
    color: #2c3e50;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content ul,
.article-content ol {
    margin: 1.5625rem 0 1.5625rem 2.1875rem;
    line-height: 1.7;
}

.article-content li {
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-size: 1.1875rem;
    line-height: 1.7;
    word-wrap: break-word;
}

      .question-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid #2980b9;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            font-size:1.125rem;
        }
        
        .question-box h2 {
            color: #2980b9;
            margin-bottom: 1rem;
            margin-top: 0;
            font-size: 1.3rem;
        }
        
        .question-text {
            font-style: italic;
            color: #555;
            background: white;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #dee2e6;
        }
        
        .answer-section {
            margin-top: 2rem;
        }


/* Highlight boxes */
.highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-left: 5px solid #28a745;
    border-radius: 0.625rem;
    padding: 1.5625rem;
    margin: 1.5625rem 0;
    position: relative;
    overflow-x: hidden;
    word-wrap: break-word;
}

.highlight-box h4 {
    color: #155724;
    margin-bottom: 0.9375rem;
    margin-top: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    line-height: 1.3;
}

.highlight-box h4::before {
    content: "✓";
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 1.5625rem;
    height: 1.5625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.highlight-box p {
    font-size: 1.125rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.highlight-box ul {
    margin-left: 1.5625rem;
}

.highlight-box li {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0.625rem;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid #ffc107;
    border-radius: 0.625rem;
    padding: 1.5625rem;
    margin: 1.5625rem 0;
    overflow-x: hidden;
    word-wrap: break-word;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 0.9375rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.warning-box h4::before {
    content: "⚠";
    font-size: 1.5rem;
}

.warning-box p {
    font-size: 1.125rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.warning-box ul {
    margin-left: 1.5625rem;
}

.warning-box li {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0.625rem;
}

/* Tables */
.costs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5625rem 0;
    background: white;
    border-radius: 0.625rem;
    overflow: hidden;
    box-shadow: 0 0.1875rem 0.625rem rgba(0,0,0,0.05);
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.costs-table thead,
.costs-table tbody,
.costs-table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.costs-table th,
.costs-table td {
    padding: 0.9375rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    min-width: 9.375rem;
    font-size: 1.0625rem;
    white-space: normal;
    word-wrap: break-word;
}

.costs-table th {
    background: #2980b9;
    color: white;
    font-weight: 600;
}

.costs-table tr:hover {
    background: #f8f9fa;
}

/* Comparison grids */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 1.5625rem;
    margin: 1.5625rem 0;
    overflow-x: hidden;
}

.comparison-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    padding: 1.5625rem;
    box-shadow: 0 0.1875rem 0.625rem rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

.comparison-item:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(41, 128, 185, 0.1);
}

.comparison-item h4 {
    color: #1a252f;
    margin-bottom: 0.9375rem;
    margin-top: 0;
    font-size: 1.3rem;
    line-height: 1.3;
}

.comparison-item p {
    font-size: 1.0625rem;
    line-height: 1.6;
    word-wrap: break-word;
}

/* Steps */
.steps-container {
    margin: 1.875rem 0;
}

.step-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.625rem;
    padding: 1.5625rem;
    margin: 1.25rem 0;
    position: relative;
    padding-left: 5rem;
    box-shadow: 0 0.1875rem 0.625rem rgba(0,0,0,0.05);
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

.step-number {
    position: absolute;
    left: 1.5625rem;
    top: 1.5625rem;
    background: #2980b9;
    color: white;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-item strong {
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.625rem;
    line-height: 1.4;
    word-wrap: break-word;
}





/* Social sharing */


.social-share {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    align-items: center;
}

.share-label {
    font-weight: bold;
    margin-right: 10px;
    color: #333;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.facebook { background: #1877f2; }
.twitter { background: #000; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }
.email { background: #ea4335; }

.icon { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 768px) {
    .social-share { flex-wrap: wrap; justify-content: center; }
    .share-label { width: 100%; text-align: center; margin-bottom: 10px; }
}


/* Author info */
.author-info-box {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 0.9375rem;
    padding: 1.875rem;
    margin: 2.5rem 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    overflow-x: hidden;
}

.author-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2980b9, #1565c0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.author-details h4, .author-details h4 a {
    color: #1a252f;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-decoration: none;
}

.author-details p {
    color: #7f8c8d;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1.0625rem;
    word-wrap: break-word;
}

    /*linki*/
    .article-content {
    line-height: 1.6;
    color: #333;
}

/* Podstawowe style dla linków w artykule */
.article-content a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.article-content a:hover {
    color: #1d4ed8;
    border-bottom-color: #2563eb;
}

.article-content a:visited {
    color: #7c3aed;
}



/* Style dla linków zewnętrznych */
.article-content a[href^="http"]:not([href*="e-prawnik.pl"]):after {
    content: " ↗";
    font-size: 0.8em;
    opacity: 0.7;
}

.article-content a[href^="http"]:not([href*="e-prawnik.pl"]) {
    color: #059669;
}

.article-content a[href^="http"]:not([href*="e-prawnik.pl"]):hover {
    color: #047857;
    background: rgba(5, 150, 105, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Style dla linków do emaili */
.article-content a[href^="mailto:"] {
    color: #ea580c;
}

.article-content a[href^="mailto:"]:before {
    content: "✉ ";
    margin-right: 4px;
}

.article-content a[href^="mailto:"]:hover {
    color: #c2410c;
    background: rgba(234, 88, 12, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Style dla linków do telefonów */
.article-content a[href^="tel:"] {
    color: #7c2d12;
}

.article-content a[href^="tel:"]:before {
    content: "📞 ";
    margin-right: 4px;
}

.article-content a[href^="tel:"]:hover {
    color: #65a30d;
    background: rgba(124, 45, 18, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}


/* Podkreślenie animowane dla głównych linków */
.article-content a:not([href*=".pdf"]):not([href^="mailto:"]):not([href^="tel:"]):not([href^="#"])::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.article-content a:not([href*=".pdf"]):not([href^="mailto:"]):not([href^="tel:"]):not([href^="#"]):hover::after {
    width: 100%;
}

/* Style dla linków w listach */
.article-content ul a,
.article-content ol a {
    font-weight: 500;
}

/* Style dla nagłówków z linkami */
.article-content h1 a,
.article-content h2 a,
.article-content h3 a,
.article-content h4 a,
.article-content h5 a,
.article-content h6 a {
    color: inherit;
    text-decoration: none;
    border: none;
}

.article-content h1 a:hover,
.article-content h2 a:hover,
.article-content h3 a:hover,
.article-content h4 a:hover,
.article-content h5 a:hover,
.article-content h6 a:hover {
    color: #2563eb;
}

/* Focus dla dostępności */
.article-content a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 3px;
}

.toc {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #2980b9;
    padding: 1.5625rem;
    margin: 1.875rem 0;
    border-radius: 0.625rem;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0,0,0,0.08);
    overflow-x: hidden;
}

.toc h3 {
    color: #2980b9;
    margin-bottom: 1.25rem;
    margin-top: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc li {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.toc li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0.2rem; 
    color: #2980b9;
    font-weight: bold;
}

.toc a {
    color: #1a252f;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s;
    display: block;
    padding: 0.5rem 0;
    word-wrap: break-word;
}

.toc a:hover {
    color: #2980b9;
}

/* Media queries dla responsywności */
@media (max-width: 768px) {
    .article-content a {
        padding: 3px 2px;
        margin: 1px 0;
        display: inline-block;
    }
    
    /* Większe obszary kliknięcia na mobile */
    .article-content a[href*=".pdf"],
    .article-content a[href^="mailto:"],
    .article-content a[href^="tel:"] {
        padding: 6px 8px;
        margin: 2px 0;
        border-radius: 4px;
        background: rgba(0,0,0,0.05);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .article-content a {
        color: #60a5fa;
    }
    
    .article-content a:hover {
        color: #93c5fd;
    }
    
    .article-content a:visited {
        color: #a78bfa;
    }
    
    .article-content a[href^="http"]:not([href*="e-prawnik.pl"]) {
        color: #34d399;
    }
    

}

/* /linki */

/* Related articles */
.related-articles {
    background: #f8fafc;
    border-radius: 0.9375rem;
    padding: 1.875rem;
    margin: 2.5rem 0;
    overflow-x: hidden;
}

.related-title {
    color: #1a252f;
    font-size: 1.6rem;
    margin-bottom: 1.5625rem;
    font-weight: 600;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.25rem;
}

.related-item {
    background: white;
    border-radius: 0.625rem;
    padding: 1.25rem;
    box-shadow: 0 0.1875rem 0.625rem rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

.related-item:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(41, 128, 185, 0.1);
}

.related-item h5 {
    color: #1a252f;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.related-item p {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
    word-wrap: break-word;
}

/* RESPONSYWNOŚĆ - TABLET */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.875rem;
    }
}

/* RESPONSYWNOŚĆ - MOBILE */
@media (max-width: 768px) {
    /* Podstawowe kontenery */
    .article-container {
        padding: 0 0.625rem;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .main-content {
        padding: 1.5625rem 0.9375rem;
        margin: 0;
        max-width: 100%;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    /* Tytuły */
    .article-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
        word-wrap: break-word;
    }

    .article-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin: 2.1875rem 0 1.25rem;
        word-wrap: break-word;
    }

    .article-content h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin: 1.875rem 0 0.9375rem;
        word-wrap: break-word;
    }

    .article-content h4 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin: 1.5625rem 0 0.75rem;
        word-wrap: break-word;
    }

    /* Tekst */
    .article-content p {
        font-size: 1.1875rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .article-content li {
        font-size: 1.1875rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }

    /* Meta informacje */
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .meta-item {
        font-size: 1rem;
    }

    /* Breadcrumbs */
    .breadcrumb-list {
        font-size: 1rem;
        flex-wrap: wrap;
        gap: 0.3125rem;
    }

    /* Boxy informacyjne */
    .highlight-box,
    .warning-box {
        padding: 1.5625rem 1.25rem;
        margin: 1.5625rem 0;
        border-radius: 0.625rem;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    .highlight-box h4,
    .warning-box h4 {
        font-size: 1.3rem;
        margin-bottom: 0.9375rem;
        line-height: 1.3;
    }

    .highlight-box p,
    .warning-box p {
        font-size: 1.125rem;
        line-height: 1.6;
        word-wrap: break-word;
    }

    .highlight-box ul,
    .warning-box ul {
        margin-left: 1.5625rem;
    }

    .highlight-box li,
    .warning-box li {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 0.625rem;
    }

    /* TOC - Spis treści */
    .toc {
        padding: 1.5625rem 1.25rem;
        margin: 1.5625rem 0;
        border-radius: 0.625rem;
        overflow-x: hidden;
    }

    .toc h3 {
        font-size: 1.4rem;
        margin-bottom: 1.125rem;
    }

    .toc a {
        font-size: 1.0625rem;
        line-height: 1.5;
        display: block;
        padding: 0.625rem 0;
        word-wrap: break-word;
    }

    /* Porównania */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        overflow-x: hidden;
    }

    .comparison-item {
        padding: 1.25rem 1.125rem;
        text-align: left;
        max-width: 100%;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    .comparison-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        text-align: center;
        line-height: 1.3;
    }

    .comparison-item p {
        font-size: 1.0625rem;
        line-height: 1.6;
        word-wrap: break-word;
    }

    /* Kroki */
    .step-item {
        padding: 1.25rem 0.9375rem;
        padding-top: 5rem;
        margin: 1.25rem 0;
        border-radius: 0.625rem;
        position: relative;
        max-width: 100%;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    .step-number {
        top: 1.25rem;
        left: 50%;
        transform: translateX(-50%);
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.1rem;
    }

    .step-item strong {
        font-size: 1.125rem;
        display: block;
        margin-bottom: 0.625rem;
        line-height: 1.4;
        word-wrap: break-word;
    }

    /* Tabele na mobile */
    .costs-table {
        font-size: 0.9375rem;
        margin: 1.5625rem 0;
        border-radius: 0.5rem;
    }

    .costs-table th,
    .costs-table td {
        padding: 0.75rem 0.625rem;
        min-width: 8.75rem;
        font-size: 0.9375rem;
    }

    .costs-table th {
        font-weight: 600;
    }

    /* Author box */
    .author-info-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5625rem 1.25rem;
        border-radius: 0.75rem;
        overflow-x: hidden;
    }

    .author-avatar {
        width: 4.375rem;
        height: 4.375rem;
        font-size: 1.8rem;
    }

    .author-details h4 {
        font-size: 1.3rem;
        margin-bottom: 0.625rem;
    }

    .author-details p {
        font-size: 1.0625rem;
        line-height: 1.6;
        word-wrap: break-word;
    }


  

    /* Related articles */
    .related-articles {
        padding: 1.5625rem 1.25rem;
        margin: 2.1875rem 0;
        border-radius: 0.75rem;
        overflow-x: hidden;
    }

    .related-title {
        font-size: 1.4rem;
        margin-bottom: 1.5625rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.125rem;
    }

    .related-item {
        padding: 1.25rem 1.125rem;
        border-radius: 0.625rem;
        max-width: 100%;
        overflow-x: hidden;
        word-wrap: break-word;
    }

    .related-item h5 {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 0.625rem;
        word-wrap: break-word;
    }

    .related-item p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
}

/* BARDZO MAŁE EKRANY - 480px i mniej */
@media (max-width: 480px) {
    .article-container {
        padding: 0 0.5rem;
    }

    .main-content {
        padding: 1.25rem 0.75rem;
        border: 0px;
        box-shadow: none;
    }
    .content-with-sidebar{
        margin-top: 10px;
    }    

    .article-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .article-content h3 {
        font-size: 1.4rem;
    }

    .article-content p {
        font-size: 1.125rem;
    }

    .breadcrumb-list {
        font-size: 0.9375rem;
    }

    .costs-table {
        font-size: 0.875rem;
    }

    .costs-table th,
    .costs-table td {
        padding: 0.625rem 0.5rem;
        min-width: 7.5rem;
        font-size: 0.875rem;
    }

    .step-item {
        padding: 0.9375rem 0.75rem;
        padding-top: 4.375rem;
    }

    .step-number {
        width: 2.1875rem;
        height: 2.1875rem;
        font-size: 1rem;
        top: 0.9375rem;
    }

    .share-btn {
        width: 95%;
        padding: 0.875rem 1.125rem;
        font-size: 0.9375rem;
    }

    .highlight-box,
    .warning-box {
        padding: 1.25rem 0.9375rem;
    }

    .toc {
        padding: 1.25rem 0.9375rem;
    }
}

/* Print styles */
@media print {
    .sharing-section, .breadcrumbs {
        display: none;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .main-content {
        box-shadow: none;
        border: none;
    }

    .article-content p,
    .article-content li {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .article-content h2 {
        font-size: 1.125rem;
    }

    .article-content h3 {
        font-size: 1rem;
    }

    .article-content h4 {
        font-size: 0.875rem;
    }
}