   /* Używamy zmiennych Bootstrapa do definicji kolorów */
        :root {
            --bs-primary: #073e6b; /* Profesjonalny niebieski */
            --bs-secondary: #E8F1F9; /* Jasne tło */
            --bs-success: #28a745; /* Kolor dla CTA */
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'Titillium Web', sans-serif;
            font-weight: 700;
        }

        /* --- Logo --- */
        .navbar-brand {
            font-size: 2.2rem;
            color: var(--bs-primary) !important;
            font-weight: 700;
        }
        
        /* --- Nawigacja --- */
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            background-color: #fff;
        }
        
        .nav-link {
            font-weight: 600;
        }

        /* --- Sekcja Hero (Główna) --- */
        #hero {
            background-color: var(--bs-secondary);
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }
        
        #hero h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            color: #222;
        }

        #hero .lead {
            font-size: 1.3rem;
            font-weight: 300;
        }
        
        #hero .btn-primary {
            background-color: var(--bs-primary);
            border: none;
            padding: 0.8rem 2rem;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        #hero .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0, 90, 156, 0.3);
        }

        /* Abstrakcyjne tło dla Hero (opcjonalnie) */
        #hero::before {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(0, 90, 156, 0.05);
            border-radius: 50%;
            z-index: 0;
        }

        /* --- Sekcje --- */
        .section-padding {
            padding: 5rem 0;
        }

        /* --- Sekcja "Dlaczego My?" (Karty korzyści) --- */
        .benefit-card {
            border: none;
            box-shadow: 0 5px 25px rgba(0,0,0,0.07);
            transition: all 0.3s ease;
            height: 100%;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
        }

        .benefit-icon {
            font-size: 3rem;
            color: var(--bs-primary);
        }
        
        /* Nasz kluczowy wyróżnik */
        .benefit-card.highlight {
            background-color: var(--bs-primary);
            color: #fff;
        }
        
        .benefit-card.highlight .benefit-icon,
        .benefit-card.highlight h3 {
            color: #fff;
        }
        
        /* --- Sekcja CTA (Call to Action) --- */
        #cta {
            background: linear-gradient(45deg, var(--bs-primary), #004170);
            color: #fff;
        }

        #cta .btn-light {
            padding: 0.8rem 2.5rem;
            font-size: 1.3rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        #cta .btn-light:hover {
            background-color: #f0f0f0;
            transform: scale(1.05);
        }

        /* --- Stopka --- */
        footer {
            background-color: #2a2a2a;
            color: #ccc;
        }
        
        footer h5 {
            color: #fff;
            margin-bottom: 1rem;
        }
        
        footer a {
            color: #ccc;
            text-decoration: none;
        }
        
        footer a:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* Dostosowanie dla mniejszych ekranów */
        @media (max-width: 768px) {
            #hero {
                padding: 4rem 0;
            }
            #hero h1 {
                font-size: 2.4rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
        }