body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: /*#0081F8;*/#007AFF;
    padding: 15px 20px;
    border-bottom: 2px solid #ffffff;
  }
  
  .navbar .brand {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
  }
  
  .navbar .brand img {
    border-radius: 5px;
    height: 50px;
    margin-right: 10px;
  }
  
  .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
  }
  
  .nav-menu li {
    display: inline-block;
  }
  
  .nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav-menu li a:hover {
    text-decoration: underline;
  }
  
  /* Hero Section */
  .hero {
    background: /*#0081F8;*/#007AFF;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    border-bottom: 1px solid #ffffff;
  }
  
  .hero h1 {
    font-size: 68px;
    margin-bottom: 0px;
    color: #ffffff;
  }
  
  .hero p {
    font-size: 22px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: /*#F2AA3C;*/ #F6C746;
    margin-bottom: 50px;
  }

  .hero img {
    border-radius: 15px;
    max-width: 275px;
    display: block;
    margin: 0 auto;
    margin-bottom: -75px;
    margin-top: -40px;
  }
  
  .cta-button {
    display: inline-block;
    background: #F2AA3C;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .cta-button:hover {
    background: #DA9936;
  }
  
  /* Features Section */
  .features-section {
    background: /*lightblue;*/#007AFF;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 1px solid #ffffff;
  }
  
  .features-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .section-intro {
    font-size: 20px;
    max-width: 450px;
    margin: 0 auto 40px auto;
    color: /*#F2AA3C;*/ #F6C746;
  }
  
  .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .feature-item {
    background: #f2f2f2;
    border-radius: 8px;
    padding: 20px;
    max-width: 250px;
    text-align: center;
  }
  
  /*.feature-item img {
    height: 50px;
    margin-bottom: 10px;
  }*/

  .feature-item img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
  }
  
  .feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .feature-item p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* How To Section */
  .how-to-section {
    background: lightblue;
    text-align: center;
    padding: 60px 20px;
  }
  
  .how-to-section h2 {
    font-size: 28px;
    margin-bottom: 2rem;
  }
  
  .how-to-section p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px auto;
  }

  .features-section,
  .download-section,
  .contact-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  /* Contact Section */
  .contact-section {
    background: #007AFF;
    text-align: center;
    padding: 60px 20px;
  }
  
  .contact-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .contact-section p {
    font-size: 20px;
    margin-bottom: 10px;
    color: /*#F2AA3C;*/ #F6C746;
  }
  
  .contact-section a {
    color: #0081F8;
    text-decoration: none;
  }
  
  /* Footer */
  .footer {
    background: #f4f4f4;
    color: #777;
    text-align: center;
    padding: 20px;
    font-size: 12px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 1rem;
    justify-content: center;
  }
  
  /* Responsive Styles */
  @media (max-width: 600px) {
    /*.hero h1 {
      font-size: 24px;
    }*/
    .hero p {
      font-size: 18px;
    }
    .features-grid {
      flex-direction: column;
      align-items: center;
    }
  }

  .hero-content { text-align: center; }

  .app-store-link { 
    display:block; 
    margin-bottom: 30px; 
  }

  .store-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; /* space between images */
  }

  .store-badges a,
  .store-badges img { display:block; }  /* prevent inline overlap */

  .app-store-badge {
    width: 270px;
    height: 58px;
    transition: opacity 0.3s;
    max-width: 100%;
    display: block;
    object-fit: contain;
    
  }

  .google-play-store-badge {
    width: 270px;
    height: 80px;
    transition: opacity 0.3s;
    max-width: 100%;
    display: block;
    object-fit: contain;
    margin: 0 auto;
  }

  .app-store-badge:hover {
    opacity: 0.9;
  }
  