
/* Block 1 */
.hero-banner-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    min-height: 85vh;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(108, 117, 125, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 2rem;
}

.hero-text-wrapper {
    max-width: 800px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #218838 0%, #1abc9c 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
    color: white;
    text-decoration: none;
}

.hero-cta-button:active {
    transform: translateY(-1px);
}

.hero-cta-button i {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-cta-button {
        font-size: 1.1rem;
        padding: 16px 32px;
    }
}

@media (max-width: 768px) {
    .hero-banner-section {
        min-height: 75vh;
    }
    
    .hero-container {
        min-height: 75vh;
    }
    
    .hero-background-image {
        min-height: 75vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-banner-section {
        min-height: 70vh;
    }
    
    .hero-container {
        min-height: 70vh;
    }
    
    .hero-background-image {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        font-size: 0.95rem;
        padding: 12px 24px;
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

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

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-main-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            position: relative;
        }

        .services-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            border-radius: 2px;
        }

        .services-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

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

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

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

        .service-icon-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

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

        .service-card:hover .service-image {
            transform: scale(1.05);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(13,110,253,0.8), rgba(102,16,242,0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-overlay {
            opacity: 1;
        }

        .service-icon {
            font-size: 3rem;
            color: white;
            animation: bounceIn 0.6s ease;
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0.3);
                opacity: 0;
            }
            50% {
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .service-content {
            padding: 30px;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 15px;
        }

        .service-description {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-features li {
            padding: 8px 0;
            color: #495057;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        .service-features i {
            color: #28a745;
            margin-right: 10px;
            font-size: 0.8rem;
        }

        .consultation-prompt {
            background: white;
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: center;
            border: 1px solid #e9ecef;
        }

        .consultation-title {
            font-size: 2rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 20px;
        }

        .consultation-text {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .consultation-button {
            display: inline-flex;
            align-items: center;
            padding: 15px 30px;
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(13,110,253,0.3);
        }

        .consultation-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(13,110,253,0.4);
            color: white;
        }

        .consultation-button i {
            margin-right: 10px;
        }

        .consultation-image-wrapper {
            position: relative;
        }

        .consultation-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
        }

        @media (max-width: 768px) {
            .migration-services-showcase {
                padding: 50px 0;
            }

            .services-main-title {
                font-size: 2.2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 60px;
            }

            .consultation-prompt {
                grid-template-columns: 1fr;
                padding: 30px;
                text-align: center;
            }

            .consultation-title {
                font-size: 1.6rem;
            }

            .consultation-image {
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .services-main-title {
                font-size: 1.8rem;
            }

            .service-content {
                padding: 20px;
            }

            .consultation-prompt {
                padding: 20px;
            }
        }

/* Block 3 */
.ai-legal-innovation {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.ai-legal-innovation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.innovation-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.innovation-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.innovation-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.ai-feature-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ai-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.feature-visual {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.ai-feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.feature-content {
    padding: 30px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
}

.feature-description {
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-metrics {
    display: flex;
    gap: 30px;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.digital-transformation-showcase {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 60px;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.content-section {
    color: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.innovation-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.innovation-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.innovation-icon {
    background: linear-gradient(45deg, #00b894, #00cec9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.innovation-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.innovation-text p {
    opacity: 0.8;
    line-height: 1.6;
}

.visualization-panel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

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

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    animation: pulse 2s infinite;
}

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

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.tech-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00b894;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.future-contact-zone {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
}

.contact-gradient {
    color: white;
}

.contact-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

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

.future-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.future-button.primary {
    background: linear-gradient(45deg, #fd79a8, #e84393);
    color: white;
    box-shadow: 0 10px 30px rgba(253, 121, 168, 0.4);
}

.future-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 121, 168, 0.6);
    color: white;
}

.future-button.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.future-button.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 968px) {
    .innovation-title {
        font-size: 2.4rem;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .transformation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .digital-transformation-showcase {
        padding: 30px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .ai-legal-innovation {
        padding: 50px 0;
    }
    
    .innovation-title {
        font-size: 2rem;
    }
    
    .innovation-subtitle {
        font-size: 1.1rem;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-metrics {
        justify-content: center;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
}

/* Block 4 */
.contact-order-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="40" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.form-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    padding: 50px 40px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #764ba2;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

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

.form-benefits {
    background: #f8f9fa;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.benefit-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.benefit-text p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.consultation-image-container {
    position: relative;
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.consultation-team-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.image-overlay-stats {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 15px;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 25px;
    text-align: center;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}

.form-container {
    padding: 40px;
}

.consultation-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-label i {
    margin-right: 8px;
    color: #667eea;
    width: 16px;
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.input-helper {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 5px;
    padding-left: 5px;
}

.checkbox-group {
    margin-bottom: 20px;
}

.custom-checkbox {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-label .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-label .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit-section {
    text-align: center;
    margin-top: 35px;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

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

.button-loader {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.security-note {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.9rem;
}

.security-note i {
    color: #28a745;
}

@media (max-width: 992px) {
    .form-content-grid {
        grid-template-columns: 1fr;
    }
    
    .form-benefits {
        order: 2;
        padding: 30px;
    }
    
    .form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-order-form {
        padding: 50px 0;
    }
    
    .form-header {
        padding: 30px 20px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-container,
    .form-benefits {
        padding: 25px;
    }
    
    .image-overlay-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .benefit-item {
        margin-bottom: 25px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .submit-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .form-header {
        padding: 25px 15px 15px;
    }
    
    .form-container,
    .form-benefits {
        padding: 20px;
    }
}
