    <style>
        /* Globalne style */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Nagłówek strony z banerem */
        header {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        
        .banner {
            width: 100%;
            height: 400px;
            background-color: #f0f0f0; /* Typowy jasnoszary kolor *//*background-image: url('../img/banner.jpg') nie chce zaczytać??? */
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }
        
        .banner-text {
            color: white;
            max-width: 800px;
        }
        
        .banner-text h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 300;
        }
        
        .banner-text p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }
        
        /* Sekcja O mnie */
        .about-section {
            padding: 20px 0;
            background-color: #fff;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #486581;
            font-weight: 500;
        }
        
        .about-text h3 {
            font-size: 1.3rem;
            margin: 1.5rem 0 1rem;
            color: #486581;
        }
        
        .about-text p {
            margin-bottom: 1rem;
        }
        
        .about-text ul {
            margin-left: 20px;
            margin-bottom: 1.5rem;
        }
        
        .about-text li {
            margin-bottom: 0.5rem;
        }
        
        /* Sekcja Podejście */
        .approach-section {
            padding: 40px 0;
            background-color: #f5f7fa;
        }
        
        .approach-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #486581;
            text-align: center;
            font-weight: 500;
        }
        
        .approach-content p {
            margin-bottom: 1.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .approach-link {
            text-align: center;
            margin-top: 2rem;
        }
        
        .approach-link a {
            display: inline-block;
            padding: 12px 25px;
            background-color: #486581;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        
        .approach-link a:hover {
            background-color: #365571;
        }
        
        /* Sekcja Kontakt */
        .contact-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .contact-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .contact-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #486581;
            font-weight: 500;
        }
        
        .contact-info {
            margin-top: 2rem;
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
        }
        
        .contact-info strong {
            font-weight: 600;
            color: #486581;
        }
        
        .cta-button {
            display: inline-block;
            margin-top: 2rem;
            padding: 15px 30px;
            background-color: #486581;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: #365571;
        }
        
        /* Stopka */
        footer {
            padding: 30px 0;
            background-color: #486581;
            color: #fff;
            text-align: center;
        }
        
        footer p {
            margin-bottom: 0.5rem;
        }
        
        /* Responsywność */
        @media (max-width: 768px) {
            .banner-text h1 {
                font-size: 2rem;
            }
            
            .banner-text p {
                font-size: 1rem;
            }
            
            .about-content, 
            .approach-content, 
            .contact-content {
                padding: 0 20px;
            }
            
            .about-image, 
            .about-text {
                flex: 100%;
            }
        }
    </style>
