
/* Block 1 */
.hero-banner {
      min-height: 100vh;
      background: url('hero-gaming-vr.jpg') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
    
    .hero-overlay {
      background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(102, 126, 234, 0.75) 100%);
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    
    .hero-banner .container {
      z-index: 2;
      animation: heroFadeIn 1.2s ease-out;
    }
    
    .hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      background: linear-gradient(45deg, #fff, #ffd700);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: titleGlow 2s ease-in-out infinite alternate;
    }
    
    .hero-description {
      font-size: 1.25rem;
      font-weight: 300;
      margin-bottom: 2.5rem;
      line-height: 1.6;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-cta-btn {
      display: inline-block;
      background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
      color: #1a1a2e;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
      transition: all 0.4s ease;
      border: 2px solid transparent;
    }
    
    .hero-cta-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
      background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
      color: #1a1a2e;
    }
    
    .hero-cta-btn:active {
      transform: translateY(-1px) scale(1.02);
    }
    
    @keyframes heroFadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes titleGlow {
      from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
      }
      to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.6);
      }
    }
    
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
      }
      
      .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 15px;
      }
      
      .hero-cta-btn {
        padding: 16px 35px;
        font-size: 1rem;
        margin: 0 15px;
      }
    }
    
    @media (max-width: 480px) {
      .hero-banner {
        min-height: 90vh;
      }
      
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-description {
        font-size: 1rem;
      }
      
      .hero-cta-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
      }
    }

/* Block 2 */
.tech-innovation-showcase {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .tech-innovation-showcase::before {
            content: '';
            background: radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .tech-innovation-showcase .container {
            position: relative;
            z-index: 2;
        }
        
        .innovation-title {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2, #ffd700);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }
        
        .innovation-subtitle {
            font-size: 1.3rem;
            color: #b8b8d1;
            line-height: 1.6;
        }
        
        .tech-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;
            height: 100%;
        }
        
        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
            border-color: rgba(102, 126, 234, 0.5);
        }
        
        .tech-image-wrapper {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .tech-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .tech-card:hover .tech-image {
            transform: scale(1.1);
        }
        
        .tech-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .tech-card:hover .tech-overlay {
            opacity: 1;
        }
        
        .tech-icon {
            font-size: 3rem;
            color: #fff;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .tech-content {
            padding: 2rem;
        }
        
        .tech-card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }
        
        .tech-description {
            color: #b8b8d1;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .tech-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .spec-badge {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .innovation-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
        }
        
        .innovation-text {
            font-size: 1.1rem;
            color: #b8b8d1;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        
        .innovation-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .feature-icon {
            font-size: 1.5rem;
            color: #ffd700;
            margin-top: 0.5rem;
        }
        
        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        
        .feature-desc {
            color: #b8b8d1;
            margin: 0;
        }
        
        .innovation-visual {
            position: relative;
        }
        
        .innovation-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .innovation-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            padding: 0.8rem 1.2rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }
        
        @media (max-width: 768px) {
            .innovation-title {
                font-size: 2rem;
            }
            
            .innovation-subtitle {
                font-size: 1.1rem;
            }
            
            .innovation-section-title {
                font-size: 2rem;
            }
            
            .tech-content {
                padding: 1.5rem;
            }
            
            .innovation-image {
                height: 300px;
            }
        }

/* Block 3 */
.neural-ecosystem {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.neural-ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ecosystem-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ecosystem-subtitle {
    font-size: 1.3rem;
    color: #b8b8d1;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.neural-node {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.neural-node:hover {
    transform: translateY(-10px) scale(1.02);
}

.node-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 400% 400%;
    border-radius: 22px;
    animation: gradient-rotate 3s ease-in-out infinite;
    z-index: 1;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }

@keyframes gradient-rotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.node-content {
    position: relative;
    background: rgba(26, 26, 46, 0.95);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.node-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.node-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.neural-icon {
    font-size: 1.5rem;
    color: #fff;
}

.node-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.node-description {
    color: #b8b8d1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.node-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
}

.neural-showcase {
    margin-top: 5rem;
}

.neural-visualization {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-hub {
    position: relative;
    width: 120px;
    height: 120px;
}

.hub-core {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 50px rgba(102, 126, 234, 0.6);
    animation: hub-pulse 2s ease-in-out infinite;
}

@keyframes hub-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 50px rgba(102, 126, 234, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 80px rgba(102, 126, 234, 0.8); }
}

.connection-line {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, transparent 100%);
    top: 50%;
    left: 50%;
    transform-origin: 0 50%;
    animation: line-pulse 3s ease-in-out infinite;
}

.line-1 { transform: translate(-50%, -50%) rotate(0deg); }
.line-2 { transform: translate(-50%, -50%) rotate(90deg); }
.line-3 { transform: translate(-50%, -50%) rotate(180deg); }
.line-4 { transform: translate(-50%, -50%) rotate(270deg); }

@keyframes line-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stream {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #f093fb 50%, transparent 100%);
    animation: stream-flow 4s linear infinite;
}

.stream-1 { top: 30%; transform: rotate(45deg); }
.stream-2 { top: 50%; transform: rotate(-30deg); }
.stream-3 { bottom: 30%; transform: rotate(60deg); }

@keyframes stream-flow {
    0% { transform: translateX(-100%) rotate(var(--rotation, 0deg)); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) rotate(var(--rotation, 0deg)); opacity: 0; }
}

.data-packet {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f093fb;
    border-radius: 50%;
    box-shadow: 0 0 10px #f093fb;
    animation: packet-move 2s ease-in-out infinite;
}

@keyframes packet-move {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.neural-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neural-description {
    color: #b8b8d1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.neural-capabilities {
    margin-bottom: 2.5rem;
}

.capability-row {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.capability-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.capability-desc {
    color: #b8b8d1;
    margin: 0;
    font-size: 0.95rem;
}

.neural-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.neural-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .ecosystem-title {
        font-size: 2.5rem;
    }
    
    .ecosystem-subtitle {
        font-size: 1.1rem;
    }
    
    .neural-visualization {
        height: 300px;
    }
    
    .central-hub {
        width: 80px;
        height: 80px;
    }
    
    .connection-line {
        width: 120px;
    }
    
    .neural-section-title {
        font-size: 2rem;
    }
    
    .capability-row {
        flex-direction: column;
        text-align: center;
    }
    
    .capability-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Block 4 */
.order-form-section {
background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
padding: 80px 0;
position: relative;
overflow: hidden;
}

.order-form-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
pointer-events: none;
}

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

.form-icon-wrapper {
width: 80px;
height: 80px;
margin: 0 auto 30px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}

.form-main-icon {
font-size: 32px;
color: #fff;
}

.form-title {
font-size: 2.8rem;
font-weight: 700;
color: #fff;
margin-bottom: 20px;
background: linear-gradient(135deg, #667eea, #764ba2, #ffd700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.form-subtitle {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
max-width: 600px;
margin: 0 auto;
}

.order-form-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(20px);
border-radius: 25px;
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 50px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
position: relative;
z-index: 2;
}

.form-grid {
display: grid;
gap: 30px;
margin-bottom: 40px;
}

.input-group {
position: relative;
}

.input-icon {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
color: #667eea;
font-size: 18px;
z-index: 3;
transition: all 0.3s ease;
}

.form-input {
width: 100%;
background: rgba(255, 255, 255, 0.08);
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 18px 20px 18px 55px;
font-size: 16px;
color: #fff;
transition: all 0.3s ease;
}

.form-input::placeholder {
color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
outline: none;
border-color: #667eea;
background: rgba(255, 255, 255, 0.12);
box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.form-input:focus + .form-label {
transform: translateY(-35px) scale(0.85);
color: #667eea;
}

.form-input:focus ~ .input-icon {
color: #ffd700;
transform: translateY(-50%) scale(1.1);
}

.form-label {
position: absolute;
left: 55px;
top: 50%;
transform: translateY(-50%);
color: rgba(255, 255, 255, 0.6);
font-size: 16px;
pointer-events: none;
transition: all 0.3s ease;
background: transparent;
padding: 0 10px;
}

.input-border {
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(135deg, #667eea, #764ba2);
transition: width 0.3s ease;
border-radius: 2px;
}

.form-input:focus ~ .input-border {
width: 100%;
}

.experience-selection {
margin-bottom: 40px;
}

.selection-title {
color: #fff;
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 25px;
text-align: center;
}

.experience-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}

.experience-option {
cursor: pointer;
display: block;
}

.experience-radio {
display: none;
}

.option-card {
background: rgba(255, 255, 255, 0.05);
border: 2px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 20px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
height: 100%;
}

.option-card:hover {
transform: translateY(-5px);
border-color: rgba(102, 126, 234, 0.5);
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.experience-radio:checked + .option-card {
border-color: #667eea;
background: rgba(102, 126, 234, 0.15);
}

.experience-radio:checked + .option-card .option-check {
opacity: 1;
transform: scale(1);
}

.option-image {
width: 100%;
height: 80px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 15px;
}

.option-content {
text-align: center;
}

.option-title {
color: #fff;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 5px;
}

.option-desc {
color: rgba(255, 255, 255, 0.7);
font-size: 14px;
margin: 0;
}

.option-check {
position: absolute;
top: 15px;
right: 15px;
width: 25px;
height: 25px;
background: linear-gradient(135deg, #667eea, #764ba2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 12px;
opacity: 0;
transform: scale(0);
transition: all 0.3s ease;
}

.form-actions {
text-align: center;
margin-bottom: 40px;
}

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

.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
transform: translateY(-1px);
}

.btn-text {
transition: opacity 0.3s ease;
}

.btn-loading {
display: none;
}

.btn-icon {
font-size: 16px;
transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
transform: translateX(5px);
}

.loading-spinner {
width: 20px;
height: 20px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-top: 2px solid #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
}

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

.form-benefits {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}

.benefit-item {
display: flex;
align-items: center;
gap: 10px;
color: rgba(255, 255, 255, 0.8);
font-size: 14px;
}

.benefit-icon {
color: #667eea;
font-size: 16px;
}

@media (max-width: 768px) {
.order-form-card {
padding: 30px 25px;
}

.form-title {
font-size: 2.2rem;
}

.form-subtitle {
font-size: 1rem;
}

.experience-options {
grid-template-columns: 1fr;
}

.form-benefits {
flex-direction: column;
gap: 15px;
}

.submit-btn {
width: 100%;
padding: 20px;
}
}

@media (max-width: 480px) {
.order-form-section {
padding: 60px 0;
}

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

.form-icon-wrapper {
width: 60px;
height: 60px;
margin-bottom: 20px;
}

.form-main-icon {
font-size: 24px;
}

.form-title {
font-size: 1.8rem;
}
}
