 /*services*/     
         .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);
        }        
   /*services*/     
           /* 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;
            }
            

        }
        
        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-card {
                height: 240px;
                padding: 25px 20px;
            }
            
            .services-section {
                padding: 60px 0;
            }
            

        }   