* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', Arial, sans-serif;
            background: #181e24;
            color: #e6eaf0;
            line-height: 1.6;
        }

        /* Sekcja O Pol-Met - pełna szerokość */
        .about-section {
            width: 100vw;
            background: #20242d;
            padding: 60px 0;
            display: flex;
            justify-content: center;
        }

        .about-content {
            max-width: 1200px;
            width: 100%;
            padding: 0 40px;
        }

        .about-text {
            width: 100%;
            color: #e6e6e6;
        }

        .about-text h2 {
            color: #6db4c8;
            font-size: 2.8rem;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 700;
            line-height: 1.2;
        }

        .about-text p {
            color: #e6e6e6;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .about-text ul {
            margin: 0 0 1.5rem 2rem;
            padding: 0;
            color: #e6e6e6;
            font-size: 1.1rem;
            list-style: disc;
        }

        .about-text ul li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .about-text strong {
            color: #6db4c8;
            font-weight: 600;
        }

        /* Tabbed interface for about section */
        .about-tabs {
            display: flex;
            margin: 3rem 0 2rem 0;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0;
        }

        .about-tab-btn {
            flex: 1 1 auto;
            background: #232a33;
            color: #ffffff;
            border: none;
            padding: 1.5em 2em;
            font-size: 1.2rem;
            font-family: inherit;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 200px;
            min-height: 70px;
            box-sizing: border-box;
            border-top: 3px solid transparent;
            border-bottom: 2px solid #232a33;
            border-left: 1px solid #1a1f25;
            border-right: 1px solid #1a1f25;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .about-tab-btn:first-child {
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
        }

        .about-tab-btn:last-child {
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
        }

        .about-tab-btn.active {
            background: #4a90a4;
            color: #fff;
            border-top: 3px solid #7fd1e6;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(74, 144, 164, 0.3);
        }

        .about-tab-btn:hover:not(.active) {
            background: #2a3238;
            color: #7fd1e6;
            transform: translateY(-1px);
        }

        .about-tab-content {
            margin-bottom: 2rem;
            min-height: 400px;
        }

        .about-tab-panel {
            display: none;
            animation: fadeIn 0.4s ease-in-out;
            padding: 2rem;
            background: #232a33;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .about-tab-panel.active {
            display: block;
        }

        .about-tab-panel p {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Style dla listy kroków procesu */
        .process-steps {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #1a1f25;
            border-radius: 10px;
            border-left: 4px solid #4a90a4;
            transition: transform 0.2s ease;
        }

        .process-step:hover {
            transform: translateX(5px);
        }

        .step-number {
            background: #4a90a4;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            color: #7fd1e6;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .step-description {
            color: #e6e6e6;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* CTA Button */
        .about-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .oferta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #4a90a4 0%, #7fd1e6 100%);
            color: #fff;
            text-decoration: none;
            padding: 1.2rem 3rem;
            font-size: 1.3rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3);
        }

        .oferta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 164, 0.4);
            background: linear-gradient(135deg, #7fd1e6 0%, #4a90a4 100%);
        }

        .oferta-btn span {
            position: relative;
        }

        @keyframes fadeIn {
            from { 
                opacity: 0;
                transform: translateY(10px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsywność */
        @media (max-width: 1000px) {
            .about-content {
                padding: 0 30px;
            }
            
            .about-text h2 {
                font-size: 2.2rem;
            }
            
            .about-tabs {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .about-tab-btn {
                min-width: 100%;
                border-radius: 8px !important;
                margin-bottom: 0.5rem;
            }
        }

        @media (max-width: 700px) {
            .about-section {
                padding: 40px 0;
            }
            
            .about-content {
                padding: 0 20px;
            }
            
            .about-text h2 {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }
            
            .about-text p {
                font-size: 1rem;
            }
            
            .about-tabs {
                margin: 2rem 0 1.5rem 0;
            }
            
            .about-tab-btn {
                font-size: 1rem;
                padding: 1rem 1.5rem;
                min-height: 60px;
            }
            
            .about-tab-panel {
                padding: 1.5rem;
            }
            
            .process-step {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }
            
            .step-number {
                margin: 0 auto 1rem auto;
            }
            
            .oferta-btn {
                padding: 1rem 2rem;
                font-size: 1.1rem;
            }
        }
        .about-title-with-logo {
    color: #4a90a4;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-logo {
    height: 80px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    flex-shrink: 0;
}

/* Responsywność */
@media (max-width: 1000px) {
    .about-title-with-logo {
        font-size: 2.2rem;
        gap: 15px;
    }
    
    .about-logo {
        height: 65px;
    }
}

@media (max-width: 700px) {
    .about-title-with-logo {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 15px;
    }
    
    .about-logo {
        height: 50px;
    }
}