    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: #333;
      background-color: #F9F9F9;
    }
    header {
      background: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      border-bottom: 1px solid #E0E0E0;
    }
    
	.logo {
      font-size: 22px;
      font-weight: 600;
      color: #4EB8A7;
    }
	.logo a{text-decoration:none;color: #4EB8A7;}
    nav {
      display: flex;
      gap: 20px;
    }
    nav a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }
	
	.menu-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
      color: #4EB8A7;
    }
    @media(max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 10;
      }
      nav.active {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
    }
	
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 60px 40px;
      background: #FFFFFF;
    }
    .hero-text {
      flex: 1;
      min-width: 280px;
    }
    .hero-text h1 {
      font-size: 36px;
      color: #4EB8A7;
    }
    .hero-text p {
      font-size: 18px;
      margin: 20px 0;
    }
    .btn {
      background: #4EB8A7;
      color: #fff;
      padding: 12px 24px;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      font-size: 16px;
    }
    .hero-img {
      flex: 1;
      min-width: 280px;
      text-align: center;
    }
    .hero-img img {
      max-width: 300px;
      border-radius: 10px;
	  margin-top:30px;
    }
    .section {
      padding: 30px 20px;
      text-align: center;
    }
    .section h2 {
      font-size: 28px;
      color: #4EB8A7;
      margin-bottom: 20px;
    }
    .services, .blog {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      width: 260px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .card h3 {
      color: #333;
      margin-bottom: 10px;
    }
    footer {
      background: #333;
      color: #fff;
      padding: 20px 40px;
      text-align: center;
      margin-top: 40px;
    }
	
	.social-icons a {
  color: #4EB8A7;
  font-size: 22px;
  margin: 0 10px;
  text-decoration: none;
}


    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
      nav {
        display: none;
      }
    }