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

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

    .hero-bg-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(13, 110, 253, 0.85) 0%, rgba(108, 117, 125, 0.75) 100%);
        z-index: 1;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        padding: 2rem 0;
    }

    .hero-text-wrapper {
        text-align: center;
        color: white;
        max-width: 800px;
        margin: 0 auto;
        padding: 0 1rem;
    }

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

    .hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        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;
    }

    .btn-hero-primary {
        background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
        color: white;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    }

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
        color: white;
    }

    .btn-hero-secondary {
        background: transparent;
        color: white;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
    }

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

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

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
        
        .hero-description {
            font-size: 1rem;
            margin-bottom: 2rem;
        }
        
        .hero-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-hero-primary,
        .btn-hero-secondary {
            width: 100%;
            max-width: 280px;
            text-align: center;
        }
        
        .hero-banner {
            min-height: 450px;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.8rem;
        }
        
        .hero-description {
            font-size: 0.95rem;
        }
        
        .btn-hero-primary,
        .btn-hero-secondary {
            padding: 0.875rem 2rem;
            font-size: 1rem;
        }
    }

/* Block 2 */
.testimonials-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
}

.testimonials-showcase::before {
    content: '';
    background: url('pattern-dots.png') repeat;
    opacity: 0.05;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #4a90e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

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

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: rgba(74, 144, 226, 0.1);
    font-family: Georgia, serif;
    position: absolute;
    top: -1rem;
    right: 1rem;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(74, 144, 226, 0.15);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid #4a90e2;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.testimonial-location {
    color: #6c757d;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 0.85rem;
}

.testimonial-quote {
    font-style: italic;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-outcome {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    position: relative;
    z-index: 2;
}

.outcome-label {
    font-weight: 600;
    color: #4a90e2;
    font-size: 0.9rem;
}

.outcome-text {
    color: #1a1a1a;
    font-weight: 500;
    margin-left: 0.5rem;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4a90e2;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-cta {
    text-align: center;
}

.testimonials-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.testimonials-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .testimonials-showcase {
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Block 3 */
.methodology-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.methodology-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(13, 110, 253, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.methodology-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.methodology-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.methodology-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.methodology-description {
    font-size: 1.2rem;
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.methodology-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.methodology-visual:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.methodology-diagram {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(108, 99, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.methodology-visual:hover .visual-overlay {
    opacity: 1;
}

.overlay-stats {
    display: flex;
    gap: 2rem;
}

.overlay-stat {
    text-align: center;
    color: white;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1rem;
    opacity: 0.9;
}

.methodology-principles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0d6efd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

.principle-icon i {
    font-size: 1.5rem;
    color: white;
}

.principle-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1rem;
}

.principle-text {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.metric-item {
    background: #f8f9fa;
    color: #495057;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
}

.methodology-phases {
    margin-bottom: 5rem;
}

.phases-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3436;
    text-align: center;
    margin-bottom: 3rem;
}

.phases-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.timeline-phase {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-phase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.phase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.phase-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1rem;
}

.phase-description {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.phase-duration {
    background: #e3f2fd;
    color: #1565c0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.methodology-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    color: white;
    overflow: hidden;
    position: relative;
}

.methodology-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: white;
    color: #667eea;
}

.btn-cta-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #667eea;
}

.cta-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .methodology-visual {
        transform: none;
        order: -1;
    }
    
    .methodology-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-image {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .methodology-preview {
        padding: 3rem 0;
    }
    
    .methodology-title {
        font-size: 2rem;
    }
    
    .phases-timeline {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .methodology-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .principle-card {
        padding: 1.5rem;
    }
    
    .timeline-phase {
        padding: 2rem 1.5rem;
    }
}

/* Block 4 */
.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(13, 110, 253, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.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 30px;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4); }
  100% { transform: scale(1); box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3); }
}

.header-icon i {
  font-size: 32px;
  color: white;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.form-visual {
  position: relative;
}

.consultation-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.consultation-image:hover {
  transform: translateY(-5px);
}

.visual-benefits {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-top: -40px;
  margin-left: 30px;
  position: relative;
  z-index: 2;
}

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

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

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

.benefit-item span {
  font-weight: 500;
  color: #212529;
  font-size: 1.1rem;
}

.consultation-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e9ecef;
  font-size: 1.1rem;
  color: #212529;
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: #adb5bd;
}

.form-input:focus {
  border-bottom-color: #667eea;
}

.form-input:focus + .input-underline {
  transform: scaleX(1);
}

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

.form-actions {
  margin-bottom: 30px;
}

.submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

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

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

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

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

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

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(40, 167, 69, 0.1);
  padding: 15px 20px;
  border-radius: 50px;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.guarantee-badge i {
  color: #28a745;
  font-size: 20px;
}

.guarantee-text {
  text-align: left;
}

.guarantee-text strong {
  display: block;
  color: #28a745;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.guarantee-text span {
  color: #6c757d;
  font-size: 0.85rem;
}

.success-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.indicator-item {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.indicator-item:hover {
  transform: translateY(-5px);
}

.indicator-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

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

@media (max-width: 992px) {
  .form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .visual-benefits {
    margin-top: 20px;
    margin-left: 0;
  }
  
  .form-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .form-subtitle {
    font-size: 1.1rem;
  }
  
  .consultation-form {
    padding: 30px 20px;
  }
  
  .success-indicators {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .guarantee-badge {
    flex-direction: column;
    text-align: center;
  }
  
  .guarantee-text {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .header-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .header-icon i {
    font-size: 24px;
  }
  
  .form-title {
    font-size: 1.6rem;
  }
  
  .consultation-image {
    height: 300px;
  }
  
  .visual-benefits {
    padding: 20px;
  }
}
