
/* Block 1 */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('financial-education-background.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
    padding: 120px 0 80px;
}

.hero-overlay {
    background: rgba(16, 24, 40, 0.75);
    backdrop-filter: blur(1px);
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    color: white;
    z-index: 2;
    position: relative;
}

.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.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(45deg, #0d6efd, #0056b3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.6);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    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: white;
    color: #667eea;
    text-decoration: none;
    transform: translateY(-2px);
}

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

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        justify-content: space-between;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }
}

/* Block 2 */
.financial-tools-showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  position: relative;
  overflow: hidden;
}

.financial-tools-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
  transform: rotate(-15deg);
  z-index: 0;
}

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

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

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

.tool-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tool-icon-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.tool-card:hover .tool-image {
  transform: scale(1.05);
}

.tool-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tool-card:hover .tool-overlay {
  opacity: 1;
}

.tool-icon {
  font-size: 3rem;
  color: white;
  animation: pulse 2s infinite;
}

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

.tool-content {
  padding: 2rem;
}

.tool-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.tool-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tool-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.stats-showcase {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.stats-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-box {
  text-align: center;
  padding: 1rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

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

.integration-showcase {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.integration-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.integration-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.bank-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .financial-tools-showcase {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .security-badges {
    justify-content: center;
  }
  
  .tool-features {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .stats-showcase,
  .integration-showcase {
    padding: 1.5rem;
  }
  
  .tool-content {
    padding: 1.5rem;
  }
}

/* Block 3 */
.financial-literacy-academy {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

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

.academy-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.featured-course-showcase {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 34, 56, 0.1);
  transition: transform 0.3s ease;
}

.featured-course-showcase:hover {
  transform: translateY(-8px);
}

.course-hero-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.featured-course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-course-showcase:hover .featured-course-img {
  transform: scale(1.05);
}

.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.course-content {
  padding: 30px;
}

.course-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a2238;
  margin-bottom: 15px;
}

.course-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 25px;
}

.course-highlights {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #667eea;
  font-weight: 600;
  font-size: 0.95rem;
}

.highlight-item i {
  font-size: 1.1rem;
}

.course-stats {
  display: flex;
  gap: 30px;
  padding-top: 25px;
  border-top: 2px solid #f1f5f9;
}

.course-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-stats .stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 5px;
}

.course-stats .stat-label {
  color: #64748b;
  font-size: 0.9rem;
}

.learning-paths {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(26, 34, 56, 0.08);
}

.paths-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2238;
  margin-bottom: 25px;
}

.path-item {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}

.path-item:last-child {
  border-bottom: none;
}

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

.path-content {
  flex: 1;
}

.path-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2238;
  margin-bottom: 8px;
}

.path-desc {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.path-duration {
  color: #667eea;
  font-weight: 600;
  font-size: 0.9rem;
}

.instructor-spotlight {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(26, 34, 56, 0.08);
}

.instructor-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.instructor-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.instructor-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2238;
  margin-bottom: 5px;
}

.instructor-title {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 15px;
}

.instructor-bio {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.instructor-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.credential {
  background: #f1f5f9;
  color: #1a2238;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.success-stories {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(26, 34, 56, 0.08);
}

.stories-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2238;
  margin-bottom: 25px;
}

.story-card {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f1f5f9;
}

.story-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.story-quote {
  margin-bottom: 20px;
}

.story-quote p {
  color: #1a2238;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0;
}

.story-author {
  display: flex;
  gap: 15px;
  align-items: center;
}

.author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: #1a2238;
  display: block;
  margin-bottom: 5px;
}

.author-location {
  color: #64748b;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.story-results {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-item {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.enrollment-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  padding: 50px;
  color: white;
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

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

.benefit-item i {
  color: #4ade80;
  font-size: 1.1rem;
}

.cta-pricing {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.original-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  opacity: 0.6;
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
}

.savings-badge {
  background: #4ade80;
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn-enroll-now {
  background: white;
  color: #667eea;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-enroll-now:hover {
  background: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-free-consultation {
  background: transparent;
  color: white;
  padding: 15px 30px;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-free-consultation:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
}

.cta-visual {
  flex-shrink: 0;
}

.cta-image {
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 992px) {
  .academy-title {
    font-size: 2.5rem;
  }
  
  .instructor-card {
    flex-direction: column;
    text-align: center;
  }
  
  .enrollment-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-image {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .financial-literacy-academy {
    padding: 60px 0;
  }
  
  .academy-title {
    font-size: 2rem;
  }
  
  .course-highlights {
    flex-direction: column;
    gap: 15px;
  }
  
  .course-stats {
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-enroll-now,
  .btn-free-consultation {
    width: 100%;
    text-align: center;
  }
}

/* Block 4 */
.contact-form-section {
      background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
      padding: 100px 0;
      margin-top: 50px;
    }
    
    .contact-form-wrapper {
      background: white;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    
    .form-header {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 50px 40px;
      text-align: center;
    }
    
    .form-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .form-subtitle {
      font-size: 1.1rem;
      opacity: 0.95;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .form-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      padding: 60px 40px;
    }
    
    .form-visual {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    .consultation-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-benefits {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .benefit-card {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 20px;
      background: #f8fbff;
      border-radius: 12px;
      border-left: 4px solid #667eea;
    }
    
    .benefit-card i {
      font-size: 1.5rem;
      color: #667eea;
      margin-top: 5px;
      flex-shrink: 0;
    }
    
    .benefit-card h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 5px;
      color: #2c3e50;
    }
    
    .benefit-card p {
      font-size: 0.95rem;
      color: #64748b;
      margin: 0;
      line-height: 1.4;
    }
    
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    
    .form-group {
      position: relative;
    }
    
    .form-label {
      display: block;
      font-weight: 600;
      margin-bottom: 8px;
      color: #2c3e50;
      font-size: 0.95rem;
    }
    
    .form-input {
      width: 100%;
      padding: 16px 20px 16px 50px;
      border: 2px solid #e1e8ed;
      border-radius: 12px;
      font-size: 1rem;
      background: white;
      transition: all 0.3s ease;
    }
    
    .form-input:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }
    
    .input-icon {
      position: absolute;
      left: 18px;
      top: 50px;
      transform: translateY(-50%);
      color: #94a3b8;
      font-size: 1.1rem;
    }
    
    .form-input:focus + .input-icon {
      color: #667eea;
    }
    
    .form-actions {
      margin-top: 15px;
    }
    
    .submit-button {
      width: 100%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      padding: 18px 30px;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }
    
    .submit-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    }
    
    .submit-button:active {
      transform: translateY(0);
    }
    
    .form-guarantee {
      margin-top: 20px;
    }
    
    .guarantee-badges {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .guarantee-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      color: #64748b;
      background: #f1f5f9;
      padding: 8px 12px;
      border-radius: 20px;
    }
    
    .guarantee-badge i {
      font-size: 0.9rem;
      color: #10b981;
    }
    
    .consultation-preview {
      margin-top: 40px;
      padding: 30px;
      background: #f8fbff;
      border-radius: 16px;
      border: 1px solid #e1e8ed;
    }
    
    .preview-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 25px;
      color: #2c3e50;
      text-align: center;
    }
    
    .preview-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }
    
    .step-number {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    
    .step-content h5 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 5px;
      color: #2c3e50;
    }
    
    .step-content p {
      font-size: 0.9rem;
      color: #64748b;
      margin: 0;
      line-height: 1.4;
    }
    
    .testimonial-highlight {
      background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
      color: white;
      padding: 40px;
    }
    
    .testimonial-content {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }
    
    .testimonial-quote p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 30px;
      font-style: italic;
      opacity: 0.95;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
    
    .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(255, 255, 255, 0.2);
    }
    
    .author-details {
      text-align: left;
    }
    
    .author-name {
      display: block;
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 4px;
    }
    
    .author-location {
      display: block;
      font-size: 0.9rem;
      opacity: 0.8;
      margin-bottom: 8px;
    }
    
    .rating-stars {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    
    .rating-stars i {
      color: #fbbf24;
      font-size: 0.9rem;
    }
    
    .rating-text {
      font-size: 0.9rem;
      margin-left: 8px;
      opacity: 0.9;
    }
    
    @media (max-width: 1024px) {
      .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .form-visual {
        order: -1;
      }
    }
    
    @media (max-width: 768px) {
      .contact-form-section {
        padding: 60px 0;
      }
      
      .form-header {
        padding: 40px 20px;
      }
      
      .form-title {
        font-size: 2rem;
      }
      
      .form-container {
        padding: 40px 20px;
        gap: 30px;
      }
      
      .consultation-image {
        height: 220px;
      }
      
      .benefit-card {
        padding: 15px;
      }
      
      .guarantee-badges {
        flex-direction: column;
        align-items: center;
      }
      
      .testimonial-author {
        flex-direction: column;
        text-align: center;
      }
      
      .author-details {
        text-align: center;
      }
      
      .testimonial-highlight {
        padding: 30px 20px;
      }
    }
    
    @media (max-width: 480px) {
      .form-title {
        font-size: 1.8rem;
      }
      
      .form-subtitle {
        font-size: 1rem;
      }
      
      .consultation-preview {
        padding: 20px;
      }
      
      .preview-steps {
        gap: 15px;
      }
    }
