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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

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

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, white 100%);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, white 0%, var(--accent-color) 100%);
    color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
}

/* Block 2 */
.nutrition-insights {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    display: block;
    margin: 1rem auto 0;
    border-radius: 2px;
}

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

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

.insight-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.insight-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.insight-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-content {
    padding: 2rem;
}

.insight-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.insight-category {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.insight-reading-time {
    color: #888;
    font-size: 0.85rem;
}

.insights-footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .nutrition-insights {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .insight-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .insights-footer {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-input {
        width: 100%;
        min-width: auto;
    }
    
    .newsletter-button {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .insight-content {
        padding: 1.5rem;
    }
    
    .insight-title {
        font-size: 1.2rem;
    }
    
    .insight-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Block 3 */
.personalized-wellness {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 50%, #d6ede4 100%);
            overflow: hidden;
        }
        
        .wellness-intro {
            margin-bottom: 5rem;
        }
        
        .intro-content {
            padding: 2rem 0;
        }
        
        .intro-badge {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .intro-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .intro-description {
            font-size: 1.15rem;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 2.5rem;
        }
        
        .wellness-stats {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0.5rem;
        }
        
        .intro-visual {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(45, 90, 61, 0.15);
        }
        
        .intro-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
        }
        
        .visual-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }
        
        .floating-metric {
            position: absolute;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            animation: float 3s ease-in-out infinite;
        }
        
        .floating-metric:first-child {
            top: 20%;
            right: -10px;
        }
        
        .floating-metric.delay-1 {
            top: 45%;
            left: -15px;
            animation-delay: -1s;
        }
        
        .floating-metric.delay-2 {
            bottom: 20%;
            right: 10px;
            animation-delay: -2s;
        }
        
        .metric-label {
            display: block;
            font-size: 0.8rem;
            color: #6b7280;
            font-weight: 500;
        }
        
        .metric-value {
            display: block;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-top: 0.25rem;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .assessment-journey {
            margin-bottom: 5rem;
        }
        
        .journey-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 3rem;
        }
        
        .journey-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .timeline-step {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(45, 90, 61, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .timeline-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(45, 90, 61, 0.15);
        }
        
        .timeline-step.active {
            border: 2px solid var(--accent-color);
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .step-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }
        
        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .step-description {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .step-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .feature-tag {
            background: var(--accent-color);
            color: var(--primary-color);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .transformation-showcase {
            margin-bottom: 5rem;
        }
        
        .showcase-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 3rem;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2.5rem;
        }
        
        .result-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(45, 90, 61, 0.1);
            position: relative;
        }
        
        .result-avatar {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }
        
        .avatar-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent-color);
        }
        
        .result-badge {
            position: absolute;
            top: -8px;
            right: -15px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            white-space: nowrap;
        }
        
        .result-metrics {
            margin-bottom: 2rem;
        }
        
        .metric-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .metric-row:last-child {
            border-bottom: none;
        }
        
        .metric-name {
            font-weight: 600;
            color: #374151;
        }
        
        .metric-change {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .before {
            color: #ef4444;
            font-weight: 600;
        }
        
        .after {
            color: #10b981;
            font-weight: 700;
        }
        
        .arrow {
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        .result-testimonial {
            font-style: italic;
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .result-testimonial::before {
            content: '"';
            font-size: 3rem;
            color: var(--accent-color);
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: serif;
        }
        
        .result-attribution {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 0.9rem;
        }
        
        .assessment-cta {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 25px;
            padding: 4rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .assessment-cta::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.5" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .cta-description {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .cta-pricing {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        
        .price-tag {
            text-align: left;
        }
        
        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            display: block;
        }
        
        .price-period {
            font-size: 1rem;
            opacity: 0.8;
        }
        
        .price-features {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            text-align: left;
        }
        
        .feature-item {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        .cta-button {
            background: white;
            color: var(--primary-color);
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .cta-guarantee {
            font-size: 0.9rem;
            opacity: 0.8;
            margin: 0;
        }
        
        @media (max-width: 768px) {
            .intro-title {
                font-size: 2.2rem;
            }
            
            .wellness-stats {
                justify-content: center;
                gap: 2rem;
            }
            
            .journey-timeline {
                grid-template-columns: 1fr;
            }
            
            .results-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-pricing {
                flex-direction: column;
                gap: 2rem;
            }
            
            .price-tag, .price-features {
                text-align: center;
            }
            
            .assessment-cta {
                padding: 2.5rem 1.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }

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

.order-form-section::before {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23a8c5b3" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
    width: 100%;
    height: 100px;
    top: -50px;
    left: 0;
    z-index: 1;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(45, 90, 61, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

.header-icon i {
    font-size: 2rem;
    color: white;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    padding: 3rem 2rem;
}

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

.form-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.input-group {
    position: relative;
}

.input-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    position: relative;
    z-index: 1;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 61, 0.15);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.form-input:focus + .input-highlight {
    width: 100%;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(45, 90, 61, 0.4);
}

.button-text {
    position: relative;
    z-index: 2;
}

.submit-button i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.submit-button:hover i {
    transform: translateX(5px);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

.form-testimonial {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-quote {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-quote p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.85rem;
    color: #666;
    display: block;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    padding: 2.5rem 2rem;
    margin-top: 2rem;
}

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

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 3rem 0;
    }
    
    .form-wrapper {
        margin: 0 1rem;
        border-radius: 15px;
    }
    
    .form-header {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
