* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Header */
  .header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
  }
  
  nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  nav a:hover {
    color: #087f5b;
  }
  
  /* Hero */
  .hero {
    padding: 80px 0;
    background-color: #f1fdf8;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  
  @media (min-width: 768px) {
    .hero-content {
      flex-direction: row;
      gap: 60px;
    }
  }
  
  .hero-text {
    max-width: 550px;
  }
  
  .hero-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .btn-primary {
    background-color: #087f5b;
    color: #fff;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #056c49;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Features */
  .features {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
  }
  
  .features h3 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 8px rgba(0,0,0,0.04);
  }
  
  .feature-card h4 {
    font-size: 20px;
    color: #087f5b;
    margin-bottom: 10px;
  }
  
  /* Footer */
  .footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #666;
  }
  .contact {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }
  
  .contact-form button {
    background-color: #087f5b;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #056c49;
  }
  