  body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 14px;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  .container {
    /* width: 100%; */
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  
  /* Header */
  .header {
    padding: 2rem 0;
    position: sticky;
    top: 0;   
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  }
  
  .logo{
    width: 30%;
  }
  
  /* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 60vh; /* adjust if needed */
    overflow: hidden;
  }
  
  /* Full-width image */
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Green overlay */
  .hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(44, 127, 111, 0.9);
  
    /* Angled shape */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  }
    
  
  /* Intro */
  .intro {
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .intro h1 {
    font-size: 2rem;
    color: #09a979;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
  }
  .intro h1:before {
    content: "";
    position: absolute;
    width: 30%;
    height: 1px;
    bottom: 0;
    left: 35%;
    border-bottom: 2px solid #09a979;
    }
  
  .intro p {
    text-align: left;
    margin: 1rem auto;
    line-height: 1.6;
    color: #666;
  }
  
  .btn {
    display: inline-block;
    background: #d97f00;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: 0.3s;
  }

  .btn:hover{
    background: #b66c0a;
  }
  
  /* Features */
  .features {
    text-align: center;
    padding-bottom: 2rem;
  }

  .features h1{
    font-size: 2rem;
    color: #09a979;
    text-align: center;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
  }

  .features h1:before {
    content: "";
    position: absolute;
    width: 25%;
    height: 1px;
    bottom: 0;
    left: 35%;
    border-bottom: 2px solid #09a979;
    }
  
  .feature h3 {
    color: #2c7f6f;
  }

  /* Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 4rem;
  }
  
  /* Feature block */
  .feature h3 {
    color: #2c7f6f;
    font-size: 18px;
    margin-bottom: 0.75rem;
    text-align: start;
  }
  
  .feature p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: start;
  }
  
  /* Link */
  .feature-link {
    display: block;
    /* margin-top: 0.75rem; */
    font-size: 14px;
    color: #63b100;
    text-decoration: none;
    text-align: start;
  }
  
  .feature-link:hover {
    text-decoration: underline;
  }
  
  /* Vertical divider for right column */
  .feature-divider {
    position: relative;
    padding-left: 2.5rem;
  }
  
  .feature-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1px;
    height: 85%;
    background: #ddd;
  }
  
  /* Highlight bar */
  /* Section wrapper */
.highlight {
    margin: 2rem 0;
    font-family: Arial, sans-serif;
  }
  
  /* Green title bar */
  .highlight-header {
    background: #3f8f63;
    color: #fff;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 16px;
    font-weight: 600;
  }
  
  /* Light green content area */
  .highlight-body {
    background: #eef6f3;
    padding: 1.5rem 2rem;
  }
  
  .highlight-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
  }  
  
  /* Testimonials */
  /* Section */
.testimonials {
    padding: 2.5rem 0;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  /* Grid */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  /* Card */
  .testimonial img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Quote */
  .testimonial blockquote {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    font-style: italic;
    margin: 0 0 1.25rem;
    position: relative;
  }
  
  /* Quote decoration */
  .testimonial blockquote::before {
    content: "“";
    font-size: 150px;
    color: #e6e6e6;
    position: absolute;
    left: -21px;
    top: -60px;
    z-index: -1;
  }
  
  /* Author */
  .author {
    font-size: 14px;
    color: #2c7f6f;
    line-height: 1.5;
  }

  /* Footer wrapper */
.site-footer {
    font-family: Arial, sans-serif;
    padding: 2rem 0;
    font-size: 11px;
  }
  
  /* Top divider line */
  .footer-divider {
    height: 1px;
    background: #2c7f6f;
    margin-bottom: 1.5rem;
  }
  
  /* Layout */
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  /* Social icons */
  .social-icons {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
  }
  
  .social-icons a {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    text-decoration: none;
  }
  
  /* Brand colors */
  .facebook { background: #3b5998; }
  .twitter { background: #1da1f2; }
  .linkedin { background: #0077b5; }
  .youtube { background: #cd201f; }
  
  /* Links */
  .footer-links {
    color: #666;
  }
  
  .footer-links a {
    color: #666;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }


  /* /////////////////////////////////////////////////////////////////////////// */
  /* Responsiveness */


  /* Hero section */
  @media (max-width: 768px) {
    .hero {
      height: 280px;
    }
  
    .hero-overlay {
      display: none;
    }
  }

  @media (max-width: 576px) {
    .container {
    max-width: 540px;
    }
    .logo{
        width: 65%;
    }
  }

  @media (min-width: 992px) {
    .container {
    max-width: 960px;
    }        
  }

  /* Container */
  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }        
  }
  
  /* Extra large devices */
  @media (min-width: 1200px) {
    .container {
      max-width: 1300px;
    }        
  }

  /* Feature section */
  @media (min-width: 768px) {
    .features {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .feature {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
      }
    
    .features-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .feature-divider {
      padding-left: 0;
    }

    .feature-divider::before {
      display: none;
    }
  }

  /* Testimonials */
  @media (max-width: 900px) {
    .testimonial-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .testimonial-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (min-width: 768px) {
    .testimonials {
      grid-template-columns: repeat(3, 1fr);
    }
  }