
/* Block 1 */
.hero-banner {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .hero-background {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    .hero-overlay {
        position: relative;

        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(74, 20, 140, 0.85) 100%);
        z-index: 2;
    }

    .hero-content {
        position: relative;

        z-index: 3;
        color: white;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        background: linear-gradient(45deg, #ffffff, #f8f9ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 2rem;
        color: #e8eaff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .hero-description {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: #f0f2ff;
        font-weight: 400;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .hero-subdescription {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 3rem;
        color: #d8dcff;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .hero-actions {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 4rem;
        flex-wrap: wrap;
    }

    .btn-primary-custom {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
        color: white;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 8px 25px rgba(238, 90, 82, 0.4);
        transition: all 0.3s ease;
        border: none;
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(238, 90, 82, 0.6);
        color: white;
        text-decoration: none;
    }

    .btn-secondary-custom {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .btn-secondary-custom:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
        color: white;
        text-decoration: none;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        min-width: 140px;
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

    .stat-number {
        display: block;
        font-size: 2.2rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .stat-label {
        display: block;
        font-size: 0.9rem;
        color: #e8eaff;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
        }

        .hero-description,
        .hero-subdescription {
            font-size: 1rem;
        }

        .hero-actions {
            flex-direction: column;
            align-items: center;
        }

        .btn-primary-custom,
        .btn-secondary-custom {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }

        .hero-stats {
            gap: 1.5rem;
        }

        .stat-item {
            min-width: 120px;
            padding: 1rem;
        }

        .stat-number {
            font-size: 1.8rem;
        }
    }

/* Block 2 */
.legal-services-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    margin: 20px auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-content {
    padding: 35px;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-icon i {
    color: white;
    font-size: 1.8rem;
}

.service-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 18px;
}

.service-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.services-cta {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.2);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: white;
    color: #1e3a8a;
}

.btn-cta-primary:hover {
    background: #f1f5f9;
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .legal-services-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin: 0 10px;
    }
}

/* Block 3 */
.expert-testimonials {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            overflow: hidden;
        }

        .expert-testimonials .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .expert-testimonials .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
            position: relative;
        }

        .expert-testimonials .section-title::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            margin: 20px auto 0;
            display: block;
            border-radius: 2px;
        }

        .expert-testimonials .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .testimonial-card.featured {
            grid-column: span 2;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: scale(1.02);
        }

        .testimonial-card.featured .client-name,
        .testimonial-card.featured .testimonial-text {
            color: white;
        }

        .testimonial-card.featured .case-badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f0f0f0;
        }

        .testimonial-card.featured .client-photo {
            border-color: rgba(255, 255, 255, 0.3);
        }

        .client-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 5px;
        }

        .client-location {
            font-size: 0.9rem;
            color: #888;
        }

        .rating {
            display: flex;
            gap: 2px;
            margin-top: 5px;
        }

        .rating i {
            color: #ffd700;
            font-size: 0.9rem;
        }

        .case-badge {
            background: #e3f2fd;
            color: #1976d2;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .testimonial-text {
            color: #555;
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .testimonial-results {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .result-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #667eea;
            font-weight: 500;
        }

        .testimonial-card.featured .result-item {
            color: rgba(255, 255, 255, 0.9);
        }

        .testimonials-summary {
            margin-top: 60px;
        }

        .summary-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .summary-stat {
            display: flex;
            align-items: center;
            gap: 20px;
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .stat-content {
            flex: 1;
        }

        .stat-number {
            display: block;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a2e;
            line-height: 1;
        }

        .stat-label {
            display: block;
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }

        .testimonials-cta {
            text-align: center;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 50px 40px;
            border-radius: 20px;
            color: white;
        }

        .testimonials-cta .cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .testimonials-cta .cta-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-primary,
        .btn-cta-secondary {
            padding: 15px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-cta-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .btn-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            color: white;
        }

        .btn-cta-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        @media (max-width: 768px) {
            .expert-testimonials {
                padding: 60px 0;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-card.featured {
                grid-column: span 1;
                transform: none;
            }

            .summary-stats {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }

            .summary-stat {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .cta-actions {
                flex-direction: column;
                align-items: center;
            }

            .testimonials-cta {
                padding: 30px 20px;
            }
        }

/* Block 4 */
.legal-process-guide {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e3f2fd 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.4rem;
    color: #546e7a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.process-overview {
    background: white;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.1);
    display: flex;
    gap: 50px;
    align-items: center;
}

.process-intro-image {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
}

.process-intro-content {
    flex: 1;
}

.intro-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-description {
    font-size: 1.1rem;
    color: #455a64;
    line-height: 1.7;
    margin-bottom: 30px;
}

.intro-benefits {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1976d2;
    font-weight: 500;
}

.benefit-item i {
    font-size: 1.2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.step-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.08);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(26, 35, 126, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-icon {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 1.8rem;
    color: #1976d2;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    font-size: 1.05rem;
    color: #455a64;
    line-height: 1.7;
    margin-bottom: 25px;
}

.step-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1976d2;
    font-weight: 500;
}

.checklist-item i {
    color: #4caf50;
    font-size: 1.1rem;
}

.process-tools {
    background: white;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.1);
    text-align: center;
}

.tools-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 50px;
    line-height: 1.3;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tool-card {
    background: #f8faff;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.1);
}

.tool-icon {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tool-icon i {
    font-size: 2rem;
    color: white;
}

.tool-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 10px;
}

.tool-description {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.5;
}

.process-cta {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    border-radius: 20px;
    padding: 60px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-cta-primary {
    background: white;
    color: #1976d2;
}

.btn-cta-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .legal-process-guide {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .process-overview {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }
    
    .process-intro-image {
        width: 100%;
        height: 250px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .process-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Block 5 */
.legal-consultation-form {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.legal-consultation-form::before {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.form-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.form-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
}

.consultation-benefits {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-item {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.form-container {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 800px;
}

.form-visual {
    position: relative;
    overflow: hidden;
}

.consultation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
}

.success-stats {
    display: flex;
    gap: 40px;
}

.success-stats .stat-item {
    color: white;
}

.success-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.success-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.form-content {
    padding: 60px 50px;
}

.form-intro {
    margin-bottom: 40px;
}

.intro-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.intro-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label i {
    color: #3b82f6;
    width: 16px;
}

.form-input {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: #374151;
    background: #fafbfc;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: #374151;
    background: #fafbfc;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-textarea:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-helper {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 6px;
}

.form-legal-areas {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.area-option {
    position: relative;
}

.area-option input[type="checkbox"] {
    display: none;
}

.area-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    margin: 0;
}

.area-label i {
    color: #64748b;
    width: 16px;
    transition: color 0.3s ease;
}

.area-option input[type="checkbox"]:checked + .area-label {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.area-option input[type="checkbox"]:checked + .area-label i {
    color: #3b82f6;
}

.form-privacy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.privacy-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    accent-color: #3b82f6;
}

.privacy-label {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.privacy-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

.form-security {
    margin-top: 24px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
    padding: 8px 16px;
    background: #f1f5f9;
    border-radius: 20px;
}

.security-badge i {
    color: #10b981;
}

.consultation-process {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.process-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.step-icon span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.consultation-testimonial {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.testimonial-text blockquote {
    font-size: 1.25rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.consultation-faq {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.faq-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.faq-item {
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-visual {
        min-height: 300px;
    }
    
    .form-content {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .legal-consultation-form {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefit-item {
        padding: 24px;
    }
    
    .form-content {
        padding: 32px 24px;
    }
    
    .consultation-process,
    .consultation-faq {
        padding: 40px 24px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .testimonial-image {
        width: 100px;
        height: 100px;
    }
    
    .success-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .legal-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .process-title,
    .faq-title {
        font-size: 1.75rem;
    }
}
