/* General Reset and Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: #fff8f2;
    color: #333;
    line-height: 1.6;
  }
  
  header {
    background-color: #ff7043;
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: #ffe0b2;
  }
  
  .hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to right, #ffe0b2, #fff3e0);
  }
  
  .hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e65100;
  }
  
  .hero-section p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
  }
  
  .cta {
    background-color: #ff5722;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  .cta:hover {
    background-color: #e64a19;
  }
  
  /* Screenshot Section */
  .screenshots {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #fff3e0;
  }
  
  .screenshots h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #bf360c;
  }
  
  .screenshot-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .screenshot-gallery img {
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .screenshot-gallery img:hover {
    transform: scale(1.05);
  }
  
  /* Contact Info */
  .contact-info {
    background-color: #ffe0b2;
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .contact-info h3 {
    font-size: 2rem;
    color: #d84315;
    margin-bottom: 1rem;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  
  /* Footer */
  footer {
    background-color: #ff7043;
    color: white;
    text-align: center;
    padding: 1rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
    }
  
    .hero-section h2 {
      font-size: 2rem;
    }
  
    .screenshots h3,
    .contact-info h3 {
      font-size: 1.5rem;
    }
    .cta {
      display: block;
      margin: 10px auto;
      font-size: 1rem;
      padding: 10px 15px;
      width: 80%;
      max-width: 250px;
    }
    .screenshot-gallery img {
      width: 90%;
    }
  }
  