body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  .section {
    min-height: 100vh;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
  }
  
  .hero {
    background: linear-gradient(135deg, #005d89, #008159);
    text-align: center;
    position: relative;
  }
  
  .logo {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 10;
    width: auto;
    height: 60px;
    max-width: 200px;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    gap: 60px;
  }
  
  .hero-left {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .retailer-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.2);
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 5px;
    /* margin-top: 10px; */
  }
  
  .coming-soon {
    font-size: 2.5rem;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .cta {
    background-color: #ffffff;
    color: #005d89;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    width: fit-content;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .features {
    background-color: #b68659;
    text-align: center;
  }
  
  .features h2 {
    font-size: 4rem;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .feature {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .feature-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    object-fit: contain;
  }
  
  .feature p {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    font-weight: 400;
  }
  
  .feature-description {
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.5;
  }
  
  .why {
    background-color: #005d89;
  }
  
  .why-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    gap: 60px;
  }
  
  .why-left {
    flex: 1;
    text-align: left;
  }
  
  .why-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .happy-man-image {
    width: 400px;
    height: 400px;
  }
  
  .why h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .why ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .why li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 20px;
    position: relative;
  }
  
  .why li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b68659;
    font-weight: bold;
  }
  
  .founder {
    font-style: italic;
    margin-top: 20px;
    color: #b68659;
  }
  
  .philosophy h3 {
    margin-top: 30px;
    font-size: 1.5rem;
  }
  
  .signup {
    background-color: #008159;
    text-align: center;
  }
  
  .signup h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .signup-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
  }
  
  .signup-left {
    flex: 1;
  }
  
  .signup-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .promotional-text {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    text-align: left;
  }
  
  .signup form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .signup input,
  .signup select {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .signup input:focus,
  .signup select:focus {
    outline: none;
    border-color: #016182;
    box-shadow: 0 0 0 2px rgba(1, 97, 130, 0.2);
  }

  .signup select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
  }
  
  .signup button {
    grid-column: span 2;
    padding: 16px;
    background-color: #016182;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 48px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .signup button:hover {
    background-color: #014a63;
    transform: translateY(-1px);
  }

  .signup button:active {
    transform: translateY(0);
  }

  /* Footer */
  .footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 40px;
    text-align: center;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-links {
    margin-bottom: 15px;
  }

  .footer-link {
    color: #b68659;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  .footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  /* Medium devices (tablets) */
  @media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
      gap: 40px;
    }

    .retailer-image {
      width: 350px;
      height: 350px;
    }

    .happy-man-image {
      width: 350px;
      height: 350px;
    }

    .feature-grid {
      gap: 30px;
    }

    .signup form {
      max-width: 500px;
    }
  }

  /* Small devices (mobile phones) */
  @media (max-width: 768px) {
    .section {
      padding: 40px 20px;
      min-height: auto;
    }

    .logo {
      height: 40px;
      top: 15px;
      left: 20px;
      max-width: 150px;
    }

    .hero-content {
      flex-direction: column;
      text-align: center;
      gap: 30px;
      padding-top: 80px;
    }
    
    .hero-left {
      text-align: center;
    }
    
    .retailer-image {
      width: 280px;
      height: 280px;
    }
    
    .hero h1 {
      font-size: 2.2rem;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .coming-soon {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 1rem;
      margin-bottom: 25px;
      line-height: 1.5;
    }

    .cta {
      padding: 16px 32px;
      font-size: 1.1rem;
      margin: 0 auto;
    }

    .features h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
    }
    
    .feature-grid {
      grid-template-columns: 1fr;
      gap: 25px;
      padding: 0 10px;
    }
    
    .feature {
      padding: 25px 20px;
    }
    
    .feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
    }

    .feature p {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .feature-description {
      font-size: 0.95rem;
      line-height: 1.4;
    }
    
    .why-content {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
    
    .why-left {
      text-align: center;
    }

    .why h2 {
      font-size: 1.8rem;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .why p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .why li {
      font-size: 1rem;
      margin-bottom: 12px;
      text-align: left;
    }
    
    .happy-man-image {
      width: 280px;
      height: 280px;
    }

    .signup h2 {
      font-size: 1.8rem;
      margin-bottom: 30px;
      line-height: 1.3;
    }
    
    .signup-content {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
    
    .promotional-text {
      text-align: center;
      font-size: 1.1rem;
      line-height: 1.5;
    }
    
    .signup form {
      grid-template-columns: 1fr;
      gap: 15px;
      padding: 0 10px;
    }

    .signup input,
    .signup select {
      padding: 14px;
      font-size: 1rem;
      border-radius: 8px;
    }
    
    .signup button {
      grid-column: span 1;
      padding: 18px;
      font-size: 1.1rem;
      margin-top: 10px;
    }

    .footer {
      padding: 25px 20px;
    }

    .footer-link {
      margin: 0 10px;
      display: inline-block;
      margin-bottom: 10px;
    }
  }

  /* Extra small devices */
  @media (max-width: 480px) {
    .section {
      padding: 30px 15px;
    }

    .logo {
      height: 35px;
      left: 15px;
    }

    .hero-content {
      padding-top: 70px;
    }

    .hero h1 {
      font-size: 1.8rem;
    }

    .coming-soon {
      font-size: 1.5rem;
    }

    .retailer-image {
      width: 250px;
      height: 250px;
    }

    .features h2 {
      font-size: 2rem;
    }

    .feature-icon {
      width: 80px;
      height: 80px;
    }

    .happy-man-image {
      width: 250px;
      height: 250px;
    }

    .why h2 {
      font-size: 1.5rem;
    }

    .signup h2 {
      font-size: 1.5rem;
    }

    .promotional-text {
      font-size: 1rem;
    }

    .footer-link {
      display: block;
      margin: 5px 0;
    }
  }