
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            align-items: center;
        }

        .about-icon {
            font-size: 80px;
            color: #2C5AA0;
            text-align: center;
        }

        .about-text h3 {
            font-size: 24px;
            color: #2C5AA0;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 15px;
        }

        .highlight {
            color: #2C5AA0;
            font-weight: 600;
        }

        .about-list {
            list-style: none;
            margin-top: 20px;
        }

        .about-list li {
            padding: 5px 0;
            padding-left: 20px;
            position: relative;
        }

        .about-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: bold;
        }

        .factoring-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7ff 0%, #e8f2ff 100%);
        }

        .factoring-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .factoring-icons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 50px 0;
        }

        .factoring-icon {
            text-align: center;
        }

        .factoring-icon div {
            font-size: 60px;
            color: #2C5AA0;
            margin-bottom: 15px;
        }

        .for-who-section {
            padding: 80px 0;
        }

        .for-who-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .who-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .who-card div:first-child {
            font-size: 60px;
            color: #2C5AA0;
            margin-bottom: 20px;
        }

        .who-card h3 {
            font-size: 20px;
            color: #2C5AA0;
            margin-bottom: 15px;
        }

        .offer-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .offer-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }

        .offer-item div:first-child {
            font-size: 40px;
            color: #2C5AA0;
        }

        .benefits-section {
            padding: 80px 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .benefit-card {
            text-align: center;
            padding: 30px 20px;
        }

        .benefit-card div:first-child {
            font-size: 50px;
            color: #4CAF50;
            margin-bottom: 20px;
        }

        .parameters-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #2C5AA0 0%, #1e3d6f 100%);
            color: white;
        }

        .parameters-box {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            max-width: 600px;
            margin: 0 auto;
        }

        .parameter-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .parameter-item div:first-child {
            font-size: 30px;
            color: #FF6B35;
        }

        .how-it-works-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            height: 100%;
            width: 2px;
            background: #2C5AA0;
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 50px;
            align-items: center;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            width: 45%;
            position: relative;
        }

        .timeline-icon {
            width: 60px;
            height: 60px;
            background: #2C5AA0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            position: relative;
            z-index: 1;
        }

        .cooperation-section {
            padding: 80px 0;
        }

        .cooperation-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .cooperation-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
        }

        .cooperation-card h3 {
            font-size: 24px;
            color: #2C5AA0;
            margin-bottom: 20px;
        }

        .cooperation-card p {
            margin-bottom: 30px;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 32px;
            }
            
            .about-grid,
            .cooperation-grid {
                grid-template-columns: 1fr;
            }
            
            .for-who-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .offer-grid {
                grid-template-columns: 1fr;
            }
            
            .factoring-icons {
                grid-template-columns: 1fr;
            }
            
            .timeline:before {
                left: 20px;
            }
            
            .timeline-item {
                flex-direction: row !important;
            }
            
            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 60px;
            }
        }
    