.download-section {
    background-color: #0f0f10;
    color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .download-section .content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .download-section h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .download-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  .download-section .button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .download-section .button-group a img {
    height: 50px;
    max-width: 200px;
    transition: transform 0.3s ease;
  }
  
  .download-section .button-group a img:hover {
    transform: scale(1.05);
  }
  
  @media (min-width: 640px) {
    .download-section .button-group {
      flex-direction: row;
      justify-content: center;
    }
  }
  