.download-section2 {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
  }
  
  .container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .download-content {
    max-width: 800px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
  }
  
  .download-heading {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
  }
  
  .highlight {
    color: #0066FF;
    position: relative;
    display: inline-block;
  }
  
  .download-text {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .store-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .store-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
  }
  
  .store-button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
  }
  
  .store-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .store-button img {
    height: 48px;
    width: auto;
  }
  
  .phone-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: floatIn 1.2s ease-out;
  }
  
  .phone-mockup {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transform-origin: center bottom;
    animation: float 6s ease-in-out infinite;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes floatIn {
    from {
      opacity: 0;
      transform: translateY(60px) rotate(-10deg);
    }
    to {
      opacity: 1;
      transform: translateY(0) rotate(0);
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .download-section2 {
      padding: 60px 0;
    }
  
    .download-heading {
      font-size: 32px;
    }
  
    .mobile-break {
      display: block;
    }
  
    .download-text {
      font-size: 16px;
      padding: 0 20px;
    }
  
    .store-buttons {
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
  
    .phone-container {
      max-width: 80%;
    }
  }
  
  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .download-content,
    .phone-container,
    .phone-mockup,
    .store-button {
      animation: none;
      transition: none;
    }
  }