/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f8f9fa;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
  }
  
  /* Container */
  .container {
    max-width: 600px;
    width: 100%;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  /* Image */
  .hero-image {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
  }
  
  /* Text */
  h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .tagline {
    font-size: 1.15rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
  }
  
  .features li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
  }
  
  /* Buttons */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    border: none;
  }
  
  /* Primary */
  .btn.primary {
    background-color: #007aff;
    color: #fff;
  }
  
  .btn.primary:hover {
    background-color: #005ecb;
  }
  
  /* Secondary */
  .btn.secondary {
    background-color: #f1f1f1;
    color: #333;
  }
  
  .btn.secondary:hover {
    background-color: #e0e0e0;
  }
  
  /* Tertiary */
  .btn.tertiary {
    background-color: #ffffff;
    border: 1px solid #ccc;
    color: #444;
  }
  
  .btn.tertiary:hover {
    background-color: #f9f9f9;
  }

  .apps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}

.app-card {
  flex: 1 1 300px;
  max-width: 500px;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: #f9f9f9;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

@media (max-width: 768px) {
  .apps-container {
    flex-direction: column;
    align-items: center;
  }
}