/* Basic Reset / Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Setup */
  body {
    font-family: 'Nunito', sans-serif;
    background-color: #121212; /* Dark Background */
    color: #ffffff;           /* Light Text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
  }
  
  /* Hero Section */
  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 1rem;
    width: 100%;
  }
  
  .app-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
  
  .app-name {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
  }
  
  .tagline {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
  }
  
  /* CTA Button (using <a> styled like a button) */
  .cta-button {
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    background-color: #00c4b4; /* Accent Color */
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
  
  .cta-button:hover {
    background-color: #00a89b;
    transform: scale(1.05);
  }
  
  /* Features Section */
  .features-section {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
  }
  
  .features-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .features-list li {
    font-size: 1rem;
    font-weight: 400;
    background: #1e1e1e;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 16px; /* Rounded corners */
  }
  
  /* Footer */
  .footer {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #777;
  }
  