body {
    font-family: sans-serif;
    margin: 0;
    background: #fff5e9;
    color: #333;
    /* Test comment to verify CSS is loading */
  }
  
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 10%;
    flex-wrap: wrap;
    gap: 2rem;
    min-height: 80vh;
  }
  
  .hero-text {
    flex: 1;
    max-width: 45%;
    min-width: 350px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    color: #ff884d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
  }
  
  .hero p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #555;
  }
  
  button {
    background-color: #ff884d;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 136, 77, 0.3);
  }
  
  button:hover {
    background-color: #e6773d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 136, 77, 0.4);
  }
  
  img {
    flex: 1;
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-top: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  /* Header Styles */
  .main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff884d;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ff884d;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10%;
  }
  
  /* Benefits Section */
  .benefits {
    padding: 6rem 0;
    background: white;
  }
  
  .benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
  }
  
  .benefit-card {
    background: #fff5e9;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
  }
  
  .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .benefit-card h3 {
    font-size: 1.8rem;
    color: #ff884d;
    margin-bottom: 1rem;
  }
  
  .benefit-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .benefit-card ul {
    list-style: none;
    padding: 0;
  }
  
  .benefit-card li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .benefit-card li:before {
    content: "✓";
    color: #ff884d;
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  
  /* Footer Styles */
  .main-footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h4 {
    color: #ff884d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #ff884d;
  }
  
  .footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .main-header nav {
      padding: 1rem 5%;
      flex-direction: column;
      gap: 1rem;
    }
    
    .nav-links {
      gap: 1rem;
    }
    
    .hero {
      padding: 3rem 5%;
      flex-direction: column;
      text-align: center;
      min-height: auto;
      gap: 2rem;
    }
    
    .hero-text {
      max-width: 100%;
      min-width: auto;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
    
    img {
      max-width: 320px;
      margin-top: 1rem;
    }
    
    .benefits {
      padding: 3rem 0;
    }
    
    .benefits h2 {
      font-size: 2rem;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .benefit-card {
      padding: 2rem;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }
  