.cta-section {
    padding: 40px 0px 80px 0px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cta-wrapper {
    background-color: #00A0FA;
    border-radius: 30px;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-wrapper::before,
  .cta-wrapper::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .cta-wrapper::before {
    top: 20px;
    left: 20px;
    animation: rotate 20s linear infinite;
  }
  
  .cta-wrapper::after {
    bottom: 20px;
    right: 20px;
    animation: rotate 20s linear infinite reverse;
  }
  
  .cta-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .cta-title em {
    font-style: normal;
    position: relative;
    display: inline-block;
  }
  
  .cta-title em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transform-origin: right;
    animation: lineReveal 0.8s ease-out 0.8s forwards;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }
  
  .cta-button svg {
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .cta-button:hover svg {
    transform: translateX(4px);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes lineReveal {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Floating particles animation */
  .cta-wrapper::before,
  .cta-wrapper::after {
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .cta-section {
      padding: 20px;
    }
    
    .cta-wrapper {
      padding: 60px 20px;
      border-radius: 20px;
    }
  
    .cta-title {
      font-size: 36px;
      margin-bottom: 30px;
    }
  
    .cta-button {
      padding: 14px 28px;
      font-size: 15px;
    }
  }

  @media (max-width: 400px) {
    .cta-section {
        padding: 20px 0px;
      }
  }
  
  /* Animation Performance */
  @media (prefers-reduced-motion: reduce) {
    .cta-wrapper::before,
    .cta-wrapper::after,
    .cta-title em::after,
    .cta-title,
    .cta-button {
      animation: none;
    }
  }