
/* Block 1 */
.hero-banner {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            background-image: url('network-datacenter.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(30, 64, 175, 0.9));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .hero-text {
            max-width: 600px;
            color: white;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .hero-description {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .hero-cta-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
            background: linear-gradient(135deg, #059669, #047857);
        }

        .hero-cta-btn:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hero-banner {
                min-height: 60vh;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-cta-btn {
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }
        }

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

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

/* Block 2 */
.quantum-network-section {
    padding: 5rem 5% 4rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    position: relative;
    overflow: hidden;
}

.quantum-network-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quantum-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quantum-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quantum-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}

.quantum-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.quantum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.quantum-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.quantum-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.quantum-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.quantum-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.8) contrast(1.1);
}

.quantum-card:hover .quantum-img {
    transform: scale(1.1);
}

.quantum-card-content {
    padding: 2rem;
}

.quantum-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.quantum-card-text {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quantum-metrics {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    font-weight: 600;
    font-size: 0.9rem;
}

.metric-item i {
    color: #a78bfa;
}

.quantum-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-container {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.stat-label {
    color: #cbd5e1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.quantum-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.quantum-btn-primary,
.quantum-btn-secondary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantum-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.quantum-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.quantum-btn-secondary {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantum-btn-secondary:hover {
    background: #60a5fa;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .quantum-title {
        font-size: 2.2rem;
    }
    
    .quantum-subtitle {
        font-size: 1.1rem;
    }
    
    .quantum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quantum-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .quantum-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quantum-btn-primary,
    .quantum-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .quantum-metrics {
        justify-content: space-between;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .quantum-network-section {
        padding: 3rem 3% 2rem;
    }
    
    .quantum-card-content {
        padding: 1.5rem;
    }
    
    .quantum-stats-bar {
        grid-template-columns: 1fr;
    }
}

/* Block 3 */
.neural-mesh-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: white;
            overflow: hidden;
        }

        .neural-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .neural-header-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .neural-main-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, #06b6d4, #3b82f6, #8b5cf6);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .neural-description {
            font-size: 1.25rem;
            color: #cbd5e1;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .neural-feature-tags {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: rgba(59, 130, 246, 0.2);
            color: #60a5fa;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .neural-hero-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .neural-hero-img:hover {
            transform: scale(1.05);
        }

        .neural-tech-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 5rem;
        }

        .tech-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .tech-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .tech-icon-wrapper {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }

        .tech-icon-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .tech-card:hover .tech-icon-img {
            transform: scale(1.1);
        }

        .tech-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 1rem;
        }

        .tech-description {
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .tech-specs {
            display: flex;
            gap: 2rem;
        }

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

        .spec-value {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            color: #06b6d4;
        }

        .spec-unit {
            font-size: 0.85rem;
            color: #94a3b8;
            font-weight: 500;
        }

        .neural-performance-board {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 25px;
            padding: 3rem;
            margin-bottom: 5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .performance-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #f1f5f9;
        }

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

        .performance-metric {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .metric-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
        }

        .progress-ring {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: conic-gradient(#06b6d4 97%, rgba(255,255,255,0.1) 0%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .progress-ring::before {
            content: '';
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #1e293b;
        }

        .metric-percentage {
            position: absolute;
            font-weight: 800;
            color: #06b6d4;
        }

        .pulse-indicator {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #10b981;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        .metric-value {
            position: absolute;
            font-weight: 800;
            color: #10b981;
            font-size: 1.1rem;
        }

        .wave-animation {
            display: flex;
            gap: 4px;
            align-items: end;
            height: 40px;
        }

        .wave-bar {
            width: 6px;
            background: #8b5cf6;
            border-radius: 3px;
            animation: wave 1.5s ease-in-out infinite;
        }

        .wave-bar:nth-child(1) { animation-delay: 0s; }
        .wave-bar:nth-child(2) { animation-delay: 0.2s; }
        .wave-bar:nth-child(3) { animation-delay: 0.4s; }
        .wave-bar:nth-child(4) { animation-delay: 0.6s; }

        @keyframes wave {
            0%, 100% { height: 10px; }
            50% { height: 35px; }
        }

        .metric-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #f1f5f9;
            margin-bottom: 0.25rem;
        }

        .metric-detail {
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .neural-action-zone {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .action-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #f1f5f9;
            margin-bottom: 1rem;
        }

        .action-subtitle {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-bottom: 2.5rem;
        }

        .action-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .neural-btn-primary {
            background: linear-gradient(45deg, #06b6d4, #3b82f6);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .neural-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(6, 182, 212, 0.3);
        }

        .neural-btn-outline {
            background: transparent;
            color: #cbd5e1;
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 1rem 2.5rem;
            border-radius: 15px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .neural-btn-outline:hover {
            border-color: #3b82f6;
            color: #3b82f6;
            transform: translateY(-2px);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border: 3px solid #06b6d4;
        }

        .testimonial-quote {
            font-size: 1.1rem;
            font-style: italic;
            color: #e2e8f0;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            font-size: 0.95rem;
            color: #94a3b8;
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            .neural-header-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .neural-main-title {
                font-size: 2.5rem;
            }

            .neural-action-zone {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .neural-mesh-section {
                padding: 3rem 0;
            }

            .neural-main-title {
                font-size: 2rem;
            }

            .neural-tech-showcase {
                grid-template-columns: 1fr;
            }

            .performance-grid {
                grid-template-columns: 1fr;
            }

            .action-buttons {
                flex-direction: column;
            }

            .neural-btn-primary,
            .neural-btn-outline {
                width: 100%;
                justify-content: center;
            }

            .tech-specs {
                justify-content: center;
            }
        }

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 5% 6rem;
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    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="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.order-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.order-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.order-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.order-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

.order-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.order-benefits {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.benefit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

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

.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.trust-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

.order-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.order-form {
    padding: 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.form-description {
    color: #64748b;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    z-index: 1;
    margin-top: 0.75rem;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    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: 0.75rem;
    width: 100%;
    margin-bottom: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

.form-notice {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-alternatives {
    background: #f8fafc;
    padding: 2rem 3rem;
    border-top: 1px solid #e2e8f0;
}

.alternative-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.divider-text {
    padding: 0 1rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-options {
    display: flex;
    gap: 1.5rem;
}

.contact-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-option:hover {
    border-color: #2563eb;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.contact-details p {
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .order-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .order-title {
        font-size: 2.5rem;
    }
    
    .order-benefits {
        padding: 2rem;
    }
    
    .order-form {
        padding: 2rem;
    }
    
    .contact-alternatives {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 3rem 5% 4rem;
    }
    
    .order-title {
        font-size: 2rem;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit-item {
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
}
