
/* Block 1 */
.hero-banner {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
        }
        
        .hero-overlay {
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 120px 0 80px;
        }
        
        .hero-text {
            color: white;
            margin-bottom: 40px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-description {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 32px;
            color: rgba(255,255,255,0.9);
            font-weight: 300;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            border: none;
            display: inline-block;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
            color: white;
            text-decoration: none;
        }
        
        .btn-secondary-custom {
            background: transparent;
            color: white;
            padding: 15px 30px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-secondary-custom:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }
        
        .hero-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .hero-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .hero-image:hover .hero-img {
            transform: scale(1.05);
        }
        
        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('fabric-texture.jpg') repeat;
            opacity: 0.1;
            z-index: 0;
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-content {
                padding: 100px 0 60px;
            }
            
            .hero-image {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn-primary-custom,
            .btn-secondary-custom {
                text-align: center;
                width: 100%;
            }
        }

/* Block 2 */
.sustainable-fashion-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 50%, #f0f9f7 100%);
    position: relative;
    overflow: hidden;
}

.sustainable-fashion-section::before {
    content: '';
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.1));
    border-radius: 50%;
    top: 10%;
    right: -100px;
    z-index: 1;
}

.sustainable-fashion-section::after {
    content: '';
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.08), rgba(142, 68, 173, 0.08));
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    z-index: 1;
}

.sustainable-content {
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.sustainable-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.sustainable-subtitle {
    font-size: 1.2rem;
    color: #16a085;
    margin-bottom: 40px;
    font-weight: 500;
}

.sustainable-features {
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #27ae60;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.feature-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feature-text p {
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.sustainable-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #27ae60;
    line-height: 1;
    margin-bottom: 5px;
}

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

.sustainable-images {
    position: relative;
    padding: 20px;
}

.image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image {
    grid-row: 1 / -1;
    border: 4px solid rgba(39, 174, 96, 0.3);
}

.secondary-image {
    grid-column: 2;
    grid-row: 1;
}

.accent-image {
    grid-column: 2;
    grid-row: 2;
}

.grid-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.2);
}

.eco-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    animation: pulse 2s infinite;
}

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

.eco-badge i {
    font-size: 18px;
}

@media (max-width: 991px) {
    .sustainable-title {
        font-size: 2.3rem;
    }
    
    .sustainable-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .image-grid {
        height: 400px;
    }
    
    .eco-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .sustainable-fashion-section {
        padding: 60px 0;
    }
    
    .sustainable-title {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
    
    .sustainable-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 150px 150px;
        height: auto;
    }
    
    .main-image {
        grid-row: 1;
        grid-column: 1;
    }
    
    .secondary-image {
        grid-column: 1;
        grid-row: 2;
    }
    
    .accent-image {
        grid-column: 1;
        grid-row: 3;
    }
}

/* Block 3 */
.ai-innovation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.ai-innovation-section::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="%23e0e6ed" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

.ai-badge {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.ai-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0;
}

.ai-technologies {
    margin-bottom: 40px;
}

.tech-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.tech-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.tech-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.ai-process h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 25px;
}

.process-steps {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: scale(1.05);
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
    font-size: 14px;
}

.step-text {
    color: #2c3e50;
    font-weight: 500;
    white-space: nowrap;
}

.ai-visual {
    position: relative;
}

.main-tech-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.tech-showcase {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
}

.scanning-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    50% { transform: translateY(300px); }
    100% { transform: translateY(0); }
}

.data-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.point-1 { top: 20%; left: 30%; animation-delay: 0s; }
.point-2 { top: 40%; right: 25%; animation-delay: 0.5s; }
.point-3 { bottom: 30%; left: 20%; animation-delay: 1s; }
.point-4 { bottom: 20%; right: 30%; animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.grid-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.05);
}

.grid-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.grid-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.tech-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat-circle {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, #667eea, #764ba2, #667eea);
    border-radius: 50%;
    padding: 3px;
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), white calc(100% - 3px));
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    z-index: 2;
}

.stat-desc {
    font-size: 11px;
    color: #6c757d;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .ai-title {
        font-size: 2.5rem;
    }
    
    .tech-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .process-steps {
        justify-content: center;
    }
    
    .step-item {
        flex: 1;
        min-width: 140px;
    }
    
    .tech-stats {
        flex-direction: column;
        align-items: center;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    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="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: 0;
}

.form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.8);
}

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

.header-icon {
    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 20px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

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

.contact-form {
    margin-top: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.input-group-custom {
    position: relative;
}

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

.form-control-custom {
    width: 100%;
    padding: 20px 20px 20px 55px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-control-custom:focus + .floating-label,
.form-control-custom:not(:placeholder-shown) + .floating-label {
    transform: translateY(-35px) scale(0.85);
    color: #667eea;
    background: white;
    padding: 0 8px;
}

.floating-label {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.consultation-options {
    margin-bottom: 40px;
}

.consultation-options h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.option-card {
    position: relative;
}

.option-card input[type="radio"] {
    display: none;
}

.option-card label {
    display: block;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

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

.option-content i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.option-title {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.option-desc {
    font-size: 14px;
    opacity: 0.8;
}

.benefits-preview {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.benefits-preview h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefits-list {
    display: grid;
    gap: 15px;
}

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

.benefit-item i {
    color: #28a745;
    font-size: 18px;
}

.benefit-item span {
    color: #495057;
    font-weight: 500;
}

.form-footer {
    text-align: center;
}

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

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

.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #6c757d;
    font-size: 14px;
}

.privacy-notice i {
    color: #28a745;
}

.consultation-preview {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

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

.preview-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.duration-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.preview-features {
    margin-bottom: 25px;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-highlight i {
    color: #667eea;
    font-size: 20px;
    margin-top: 2px;
}

.feature-content h5 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.testimonial-mini {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.testimonial-content p {
    color: #495057;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-preview {
        margin-top: 40px;
        position: relative;
        top: 0;
    }
    
    .preview-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid .input-group-custom:first-child {
        grid-column: 1 / -1;
    }
}
