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

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.05);
    transition: transform 8s ease-in-out;
}

.hero-banner:hover .hero-background {
    transform: scale(1.1);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(25, 135, 84, 0.6) 50%, rgba(108, 117, 125, 0.9) 100%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    opacity: 0.95;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.hero-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.6);
    background: linear-gradient(135deg, #198754 0%, #0d6efd 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

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

@media (max-width: 576px) {
    .hero-banner {
        min-height: 50vh;
    }
    
    .hero-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.ai-integration-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.ai-integration-showcase::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;
}

.ai-content-wrapper {
    position: relative;
    z-index: 2;
}

.ai-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.ai-features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ai-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ai-icon-wrapper {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ai-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.ai-feature-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.ai-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.ai-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
    color: white;
}

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

.ai-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ai-floating-cards {
    position: relative;
    top: -3rem;
    left: 2rem;
}

.ai-card {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: fit-content;
    font-weight: 600;
    color: #1a1a2e;
    animation: float 3s ease-in-out infinite;
}

.ai-card i {
    color: #0d6efd;
    font-size: 1.2rem;
}

.ai-card-1 {
    margin-left: 0;
    animation-delay: 0s;
}

.ai-card-2 {
    margin-left: 3rem;
    animation-delay: 1s;
}

.ai-card-3 {
    margin-left: 1rem;
    animation-delay: 2s;
}

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

.ai-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.ai-stat-item {
    text-align: center;
}

.ai-stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.ai-stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .ai-section-title {
        font-size: 2rem;
    }
    
    .ai-floating-cards {
        position: static;
        margin-top: 2rem;
    }
    
    .ai-card {
        margin-left: 0 !important;
    }
    
    .ai-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .ai-stat-number {
        font-size: 2.2rem;
    }
}

/* Block 3 */
.quantum-computing-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.quantum-computing-showcase::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.quantum-visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.quantum-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.quantum-main-image:hover {
    transform: scale(1.05);
}

.quantum-overlay-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quantum-particle {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00ffff 0%, #0080ff 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    animation: quantumFloat 4s infinite ease-in-out;
}

.quantum-particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.quantum-particle-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.quantum-particle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 3s;
}

.quantum-data-stream {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 255, 255, 0.6) 20%, 
        rgba(0, 255, 255, 0.8) 50%, 
        rgba(0, 255, 255, 0.6) 80%, 
        transparent 100%);
    right: 10%;
    top: 0;
    animation: quantumStream 3s infinite ease-in-out;
}

@keyframes quantumFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

@keyframes quantumStream {
    0% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1.2); }
    100% { opacity: 0.3; transform: scaleY(0.8); }
}

.quantum-content-wrapper {
    padding-right: 2rem;
}

.quantum-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 20px;
}

.quantum-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ff00ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.2;
}

.quantum-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.quantum-capabilities {
    margin-bottom: 40px;
}

.quantum-capability-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.quantum-icon-container {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 18px;
    flex-shrink: 0;
}

.quantum-capability-text h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.quantum-capability-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.quantum-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.quantum-metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.quantum-metric-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.quantum-metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.quantum-metric-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 8px;
}

.quantum-metric-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.quantum-cta-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
}

.quantum-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.quantum-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.quantum-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.quantum-primary-button {
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.quantum-primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
    color: white;
}

.quantum-secondary-button {
    background: transparent;
    color: #00ffff;
    text-decoration: none;
    padding: 16px 32px;
    border: 2px solid #00ffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
}

.quantum-secondary-button:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .quantum-content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .quantum-section-title {
        font-size: 2.2rem;
    }
    
    .quantum-cta-section {
        padding: 40px 30px;
    }
    
    .quantum-cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .quantum-computing-showcase {
        padding: 60px 0;
    }
    
    .quantum-section-title {
        font-size: 1.8rem;
    }
    
    .quantum-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantum-primary-button,
    .quantum-secondary-button {
        justify-content: center;
    }
    
    .quantum-metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Block 4 */
.order-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.order-form-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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.form-icon-wrapper {
    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 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.form-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.order-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.form-group-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.input-icon-container {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.input-icon-container i {
    font-size: 1.2rem;
    color: #667eea;
}

.form-input {
    width: 100%;
    padding: 20px 20px 20px 55px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.05);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.form-input::placeholder {
    color: #999;
    font-weight: 500;
}

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

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

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.button-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.button-icon {
    transition: transform 0.3s ease;
}

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

.button-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-button:hover .button-ripple {
    transform: translateX(0);
}

.benefits-showcase {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.benefits-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.benefits-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-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));
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.success-badge i {
    color: #f39c12;
    font-size: 1.5rem;
}

.benefits-list {
    padding: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.benefit-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.benefit-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

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

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-section-title {
        font-size: 2.2rem;
    }
    
    .order-form-container {
        padding: 30px 20px;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .trust-item {
        flex-basis: calc(50% - 15px);
    }
    
    .trust-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .form-section-title {
        font-size: 1.8rem;
    }
    
    .form-section-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-item {
        flex-basis: 100%;
    }
}
