        :root {
            --primary-blue: #042751;
            --secondary-blue: #05617e;
            --light-blue: #17a2b8;
            --dark-blue: #0a1929;
            --accent-orange: #f39c12;
            --text-light: #ffffff;
            --text-dark: #333333;
            --gradient: linear-gradient(135deg, #042751 0%, #05617e 100%);
        }

        * {
            font-family: 'Montserrat', sans-serif;
        }

        body {
            overflow-x: hidden;
        }
		.white {
			color: #fff;
		}
        /* Navigation */
        .navbar {
            background: rgba(4, 39, 81, 0.95) !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar-brand img {
            height: 30px;
        }
		.navbar-toggler {
			filter:brightness(0) invert(1);
		}
        .navbar-nav .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--light-blue) !important;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(4, 39, 81, 0.8), rgba(5, 97, 126, 0.8)), url('/img/tlo1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
			padding: 90px 0 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .hero .lead {
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .btn-custom {
            background: var(--gradient);
            border: none;
            padding: 15px 40px;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(4, 39, 81, 0.3);
        }

        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(4, 39, 81, 0.4);
            color: white;
        }

        /* Section Styling */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            margin-bottom: 4rem;
        }

        /* Problem Section */
        .problem-solution {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .problem-card, .solution-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .problem-card:hover, .solution-card:hover {
            transform: translateY(-5px);
        }

        .problem-icon, .solution-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            color: white;
        }

        .problem-icon {
            background: linear-gradient(135deg, #b8860b, #ffd700);
        }

        .solution-icon {
            background: var(--gradient);
        }

        /* Solution Section */
        .solution {
            background: linear-gradient(rgba(4, 39, 81, 0.8), rgba(5, 97, 126, 0.8)), url('/img/zmiana.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .solution::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .solution .container {
            position: relative;
            z-index: 2;
        }

        .solution .section-title {
            color: white;
        }

        .solution .section-subtitle {
            color: rgba(255,255,255,0.9);
        }

        .solution-grid {
            position: relative;
            z-index: 2;
        }

        .solution-tile {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 2rem 1.5rem;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            min-height: 320px;
            display: flex;
            flex-direction: column;
        }

        .solution-tile:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .solution-tile-blue {
            background: var(--gradient);
            color: white;
        }

        .solution-tile-teal {
            background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
            color: white;
        }

        .solution-tile-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .solution-tile h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .solution-tile p {
            font-size: 0.95rem;
            line-height: 1.5;
            flex-grow: 1;
        }

        .synergic-branches h6, .vision-content h6 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .small-list {
            font-size: 0.85rem;
            line-height: 1.4;
            padding-left: 1rem;
        }

        .small-list li {
            margin-bottom: 0.3rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Company Structure */
        .company-structure {
            background: var(--gradient);
            color: white;
        }

        .company-structure .section-title {
            color: white;
        }

        .company-tabs .nav-tabs {
            border: none;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .company-tabs .nav-tabs .nav-link {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 50px;
            padding: 12px 25px;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .company-tabs .nav-tabs .nav-link.active {
            background: white;
            color: var(--primary-blue);
            border-color: white;
        }

        .tab-content {
            background: rgba(255, 255, 255, 0.1);
            padding: 31px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        /* Market Analysis */
        .market-analysis {
            background: #f8f9fa;
        }

        .stat-card {
            text-align: center;
            padding: 2rem 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: #666;
            font-weight: 500;
        }

        /* Team Section */
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }

        .team-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--light-blue);
        }

        .team-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .team-position {
            font-size: 1rem;
            color: var(--secondary-blue);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .team-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
        }

        /* Financial Forecast */
        .financial-forecast {
            background: var(--gradient);
            color: white;
        }

        .financial-forecast .section-title {
            color: white;
        }

        .forecast-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            margin-bottom: 2rem;
        }

        .forecast-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-orange);
        }

        .forecast-label {
            font-size: 1.1rem;
            color: white;
            margin-top: 0.5rem;
        }

        
        .contact {
            background: linear-gradient(rgba(4, 39, 81, 0.9), rgba(5, 97, 126, 0.9)), url('/img/tlo1.jpg');
            background-size: cover;
            background-position: center;
            color: white;
        }

        .contact-info {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .contact-info i {
            color: var(--light-blue);
            margin-right: 15px;
            font-size: 1.3rem;
        }
		.contact-form {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            color: white;
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        
        .required {
            color: var(--accent-orange);
        }
        
        .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
            color: white;
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .btn-custom {
            background: linear-gradient(45deg, var(--accent-orange), #ff8c42);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            color: white;
        }
        
        .alert {
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        
        .alert-success {
            background: rgba(40, 167, 69, 0.1);
            border-color: rgba(40, 167, 69, 0.3);
            color: #28a745;
        }
        
        .alert-danger {
            background: rgba(220, 53, 69, 0.1);
            border-color: rgba(220, 53, 69, 0.3);
            color: #dc3545;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .lead {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .team-photo {
                width: 150px;
                height: 150px;
            }

            .solution-tile {
                min-height: 250px;
            }
        }

        /* Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            animation: bounce 2s infinite;
        }
		@media (max-width: 991px) {
			.padding-mobile {
				padding: 50px 0 100px;
			}
			.padding-mobile img {
				height: 150px;
			}
			#home {
				padding-top: 100px;
			}
		}
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }