
/* Block 1 */
.hero-banner {
      position: relative;
      min-height: 100vh;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      background-size: 300% 300%;
      animation: gradientShift 8s ease infinite;
      overflow: hidden;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 100px 0 50px;
    }

    .hero-text {
      color: white;
      animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      background: linear-gradient(45deg, #fff, #e0e7ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-description {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.95;
      line-height: 1.6;
    }

    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1rem;
      font-weight: 500;
    }

    .feature-icon {
      color: #fbbf24;
      font-size: 1.2rem;
    }

    .hero-cta {
      display: inline-block;
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      color: white;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .hero-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
      color: white;
      border-color: rgba(255, 255, 255, 0.3);
    }

    .hero-image {
      position: relative;
      animation: fadeInRight 1s ease-out 0.3s both;
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .dashboard-img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
      transform: perspective(1000px) rotateY(-5deg);
      transition: transform 0.3s ease;
    }

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

    .floating-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      color: #374151;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      animation: floatingAnimation 3s ease-in-out infinite;
    }

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

    .card-1 {
      top: 10%;
      right: -10%;
      animation-delay: 0s;
    }

    .card-2 {
      bottom: 30%;
      right: -15%;
      animation-delay: 1s;
    }

    .card-3 {
      top: 50%;
      left: -10%;
      animation-delay: 2s;
    }

    .floating-card i {
      color: #667eea;
      font-size: 1.2rem;
    }

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

      .hero-image {
        margin-top: 3rem;
      }

      .floating-card {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 10px;
        display: inline-flex;
      }

      .hero-features {
        flex-direction: column;
        gap: 1rem;
      }
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2rem;
      }

      .hero-description {
        font-size: 1.1rem;
      }

      .hero-content {
        padding: 80px 0 30px;
      }
    }

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

  .advanced-analytics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23667eea" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    z-index: 0;
  }

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

  .section-header {
    margin-bottom: 60px;
  }

  .badge-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
  }

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

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

  .analytics-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  }

  .preview-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

  .metric-overlay {
    position: absolute;
    z-index: 2;
  }

  .overlay-top {
    top: 20px;
    right: 20px;
  }

  .overlay-bottom {
    bottom: 20px;
    left: 20px;
  }

  .metric-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .metric-card i {
    color: #667eea;
    font-size: 1.2rem;
  }

  .metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
  }

  .metric-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
  }

  .feature-content {
    padding-left: 40px;
  }

  .feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .feature-description {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .insight-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
  }

  .insight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
  }

  .insight-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .insight-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;
  }

  .insight-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
  }

  .insight-text {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
  }

  .feature-actions {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .btn-primary-custom {
    padding: 15px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  }

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

  .btn-link-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .btn-link-custom:hover {
    color: #764ba2;
    transform: translateX(5px);
  }

  .stats-showcase {
    margin-top: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }

  .stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
  }

  .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  }

  .stat-visual {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
  }

  .stat-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: all 0.3s ease;
  }

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

  .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
    line-height: 1;
  }

  .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
  }

  .stat-description {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
  }

  @media (max-width: 992px) {
    .feature-content {
      padding-left: 0;
      margin-top: 40px;
    }
    
    .section-title {
      font-size: 2.5rem;
    }
    
    .feature-title {
      font-size: 2rem;
    }
    
    .analytics-preview {
      transform: none;
    }
    
    .stats-showcase {
      padding: 30px 20px;
    }
  }

  @media (max-width: 768px) {
    .advanced-analytics {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .feature-title {
      font-size: 1.75rem;
    }
    
    .feature-actions {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    
    .metric-overlay {
      position: static;
      margin: 15px 0;
    }
    
    .overlay-top,
    .overlay-bottom {
      position: static;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
    }
  }

/* Block 3 */
.quantum-security {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.quantum-security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(64, 224, 208, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  margin-bottom: 60px;
}

.quantum-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #40e0d0 100%);
  color: #0f0f23;
  padding: 8px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.quantum-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #40e0d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.quantum-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.security-showcase {
  position: relative;
  margin-bottom: 40px;
}

.security-main-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.security-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 255, 127, 0.95);
  color: #0f0f23;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.security-indicator i {
  animation: pulse 2s infinite;
}

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

.security-waves {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
}

.wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #40e0d0;
  border-radius: 50%;
  opacity: 0;
  animation: ripple 3s infinite;
}

.wave-2 {
  animation-delay: 1s;
}

.wave-3 {
  animation-delay: 2s;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.security-content {
  padding-left: 40px;
}

.security-feature-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
}

.security-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.protection-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.protection-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(64, 224, 208, 0.2);
  transition: all 0.3s ease;
}

.protection-item:hover {
  background: rgba(64, 224, 208, 0.1);
  transform: translateX(10px);
  border-color: rgba(64, 224, 208, 0.4);
}

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

.protection-icon-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.protection-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #40e0d0;
  margin-bottom: 8px;
}

.protection-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.compliance-showcase {
  margin-top: 80px;
  text-align: center;
}

.compliance-header {
  margin-bottom: 50px;
}

.compliance-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.compliance-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.compliance-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid rgba(64, 224, 208, 0.2);
  transition: all 0.3s ease;
}

.compliance-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(64, 224, 208, 0.2);
}

.compliance-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 10px;
}

.compliance-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #40e0d0;
  margin-bottom: 12px;
}

.compliance-details {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.security-metrics {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(64, 224, 208, 0.3);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.metric-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.metric-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.02);
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #40e0d0 0%, #00d4ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0f0f23;
  flex-shrink: 0;
}

.metric-data {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-size: 2rem;
  font-weight: 700;
  color: #40e0d0;
  line-height: 1;
}

.metric-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .security-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .quantum-title {
    font-size: 2.8rem;
  }
  
  .security-feature-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .quantum-security {
    padding: 60px 0;
  }
  
  .quantum-title {
    font-size: 2.2rem;
  }
  
  .quantum-subtitle {
    font-size: 1.1rem;
  }
  
  .protection-item {
    flex-direction: column;
    text-align: center;
  }
  
  .protection-item:hover {
    transform: translateY(-5px);
  }
  
  .compliance-title {
    font-size: 2rem;
  }
}

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

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

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

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

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

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

.contact-form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.form-visual-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.form-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 40px;
    z-index: 2;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

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

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

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

.input-wrapper {
    position: relative;
}

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

.form-control-modern {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

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

.form-benefits {
    background: #f7fafc;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #2d3748;
    font-size: 0.95rem;
}

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

.benefit-item i {
    color: #48bb78;
    margin-right: 12px;
    font-size: 1.1rem;
}

.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;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

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

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

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

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #718096;
    font-size: 0.85rem;
}

.security-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.success-stories {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.stories-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    text-align: center;
}

.story-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

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

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

.story-content {
    flex: 1;
}

.story-quote {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.client-name {
    font-weight: 600;
    color: #2d3748;
    display: block;
    font-size: 0.9rem;
}

.client-role {
    color: #718096;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-stats {
        gap: 20px;
    }
    
    .success-stories {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .form-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}
