
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

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

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 2rem 0;
}

.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.4rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.6);
}

.hero-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta,
    .hero-secondary {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}

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

/* Block 2 */
.smart-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.smart-features::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

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

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-icon {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.feature-description {
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.feature-stats {
    text-align: center;
    position: relative;
    z-index: 3;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-item i {
    color: #764ba2;
}

.features-cta-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.features-cta-wrapper::before {
    content: '';
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.features-cta-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.features-cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .features-cta-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Block 3 */
.neural-insights-dashboard {
            background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .neural-insights-dashboard::before {
            content: '';
            background: radial-gradient(circle at 20% 20%, rgba(13, 110, 253, 0.1) 0%, transparent 50%);
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .neural-insights-dashboard .container {
            position: relative;
            z-index: 2;
        }
        
        .neural-title {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }
        
        .neural-subtitle {
            font-size: 1.3rem;
            color: #6c757d;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .neural-feature-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(13, 110, 253, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .neural-feature-card::before {
            content: '';
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
            opacity: 0.05;
            top: -30px;
            right: -30px;
        }
        
        .neural-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        }
        
        .primary-card {
            border-left: 6px solid #0d6efd;
        }
        
        .secondary-card {
            border-left: 6px solid #6610f2;
        }
        
        .neural-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .neural-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            padding: 12px;
            background: linear-gradient(135deg, #e8f2ff 0%, #f0f8ff 100%);
            border: 2px solid rgba(13, 110, 253, 0.1);
        }
        
        .neural-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #212529;
            margin: 0;
        }
        
        .neural-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        .neural-metrics {
            display: flex;
            gap: 40px;
        }
        
        .metric-item {
            text-align: center;
        }
        
        .metric-value {
            display: block;
            font-size: 2.2rem;
            font-weight: 800;
            color: #0d6efd;
            margin-bottom: 5px;
        }
        
        .metric-label {
            font-size: 0.9rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        
        .insight-module {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(13, 110, 253, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .insight-module:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
        }
        
        .module-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .module-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            padding: 8px;
            background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
        }
        
        .module-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #212529;
            margin: 0;
        }
        
        .trend-visualization {
            text-align: center;
        }
        
        .trend-bars {
            display: flex;
            align-items: end;
            justify-content: space-between;
            height: 80px;
            margin-bottom: 20px;
            gap: 8px;
        }
        
        .trend-bar {
            flex: 1;
            background: linear-gradient(180deg, #0d6efd 0%, #6610f2 100%);
            border-radius: 4px 4px 0 0;
            min-height: 20px;
            transition: all 0.3s ease;
        }
        
        .trend-bar[data-height="85"] { height: 85%; }
        .trend-bar[data-height="92"] { height: 92%; }
        .trend-bar[data-height="78"] { height: 78%; }
        .trend-bar[data-height="96"] { height: 96%; }
        .trend-bar[data-height="88"] { height: 88%; }
        
        .trend-bar:hover {
            opacity: 0.7;
        }
        
        .trend-text {
            font-size: 0.9rem;
            color: #6c757d;
            margin: 0;
        }
        
        .anomaly-alerts {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .alert-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 10px;
            background: #f8f9fa;
            transition: all 0.3s ease;
        }
        
        .alert-item.active {
            background: rgba(13, 110, 253, 0.1);
            border-left: 3px solid #0d6efd;
        }
        
        .alert-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #6c757d;
        }
        
        .alert-item.active .alert-indicator {
            background: #0d6efd;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        .alert-text {
            font-size: 0.95rem;
            color: #495057;
            font-weight: 500;
        }
        
        .sync-status {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .connected-device {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 10px;
        }
        
        .connected-device i {
            color: #6c757d;
            font-size: 1.2rem;
        }
        
        .sync-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #dc3545;
        }
        
        .sync-indicator.connected {
            background: #198754;
            animation: connected-pulse 3s infinite;
        }
        
        @keyframes connected-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        
        .neural-cta-section {
            background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
            border-radius: 28px;
            padding: 60px;
            margin-top: 40px;
            color: white;
            display: flex;
            align-items: center;
            gap: 50px;
            overflow: hidden;
            position: relative;
        }
        
        .neural-cta-section::before {
            content: '';
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>');
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0.3;
        }
        
        .neural-cta-content {
            flex: 1;
            position: relative;
            z-index: 2;
        }
        
        .cta-neural-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
        }
        
        .cta-neural-description {
            font-size: 1.1rem;
            margin-bottom: 35px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        .neural-cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .neural-primary-btn {
            background: white;
            color: #0d6efd;
            font-weight: 700;
            padding: 15px 30px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .neural-primary-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            color: #0d6efd;
        }
        
        .neural-secondary-btn {
            background: transparent;
            color: white;
            font-weight: 700;
            padding: 15px 30px;
            border-radius: 50px;
            border: 2px solid white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .neural-secondary-btn:hover {
            background: white;
            color: #0d6efd;
            transform: translateY(-2px);
        }
        
        .neural-visual {
            flex: 0 0 200px;
            position: relative;
            z-index: 2;
        }
        
        .neural-brain-img {
            width: 100%;
            height: auto;
            max-width: 200px;
            opacity: 0.9;
            filter: brightness(1.1);
        }
        
        @media (max-width: 992px) {
            .neural-title {
                font-size: 2.5rem;
            }
            
            .neural-metrics {
                gap: 20px;
            }
            
            .neural-cta-section {
                flex-direction: column;
                text-align: center;
                padding: 40px 30px;
            }
            
            .neural-visual {
                flex: none;
            }
        }
        
        @media (max-width: 768px) {
            .neural-insights-dashboard {
                padding: 60px 0;
            }
            
            .neural-title {
                font-size: 2rem;
            }
            
            .neural-feature-card {
                padding: 25px;
            }
            
            .neural-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .neural-metrics {
                flex-direction: column;
                gap: 15px;
            }
            
            .neural-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .neural-primary-btn,
            .neural-secondary-btn {
                width: 100%;
                max-width: 280px;
            }
        }

/* Block 4 */
.quantum-order-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.6s ease;
}

.form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    filter: drop-shadow(0 8px 16px rgba(102, 126, 234, 0.3));
}

.form-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1.2;
}

.form-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.quantum-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.input-group-wrapper {
    display: grid;
    gap: 12px;
}

.form-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2d3748;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.input-container:focus-within {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.input-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.input-container:focus-within .input-icon {
    opacity: 1;
}

.form-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
    background: transparent;
    padding: 0;
}

.form-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.input-highlight {
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 1px;
    margin-top: 4px;
}

.input-container:focus-within .input-highlight {
    transform: scaleX(1);
}

.form-benefits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

.benefit-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    text-align: center;
    line-height: 1.3;
}

.submit-wrapper {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.btn-text {
    flex: 1;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

.form-guarantee {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
    font-weight: 500;
}

.floating-elements {
    z-index: -1;
}

.floating-element {
    opacity: 0.15;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.element-1 {
    animation-name: float1;
    animation-delay: 0s;
    top: 20%;
    left: 10%;
}

.element-2 {
    animation-name: float2;
    animation-delay: -7s;
    top: 60%;
    right: 15%;
}

.element-3 {
    animation-name: float3;
    animation-delay: -14s;
    bottom: 20%;
    left: 15%;
}

.floating-element img {
    width: 60px;
    height: 60px;
    filter: blur(1px);
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-40px, -40px) rotate(180deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -50px) rotate(90deg);
    }
    75% {
        transform: translate(-30px, 30px) rotate(270deg);
    }
}

@media (max-width: 768px) {
    .quantum-order-form {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 16px;
    }
    
    .benefit-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .input-container {
        padding: 16px 18px;
    }
    
    .form-input {
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}
