h1, h2, h3 {
    color: #333;
    line-height: 1.2;
  }
  h1 {
      font-size: 3rem;
      font-weight: bold;
  }
  h2 {
      text-align: center;
      margin-bottom: 2rem;
  }
  h3 {
    margin-bottom: 10px;
  }
  
.hero {
    background: #e0e0e0;
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.hero-content {
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
}
.hero-content h1{
  margin-bottom: 1rem;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.hero-image {
    max-width: 40%;
    margin-left: 20px;
}
.hero-image img {
    max-width: 100%;
    height: auto;
}
.features,
.services {
    padding: 3rem 0;
}
.feature-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}
.feature,
.service {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature{
    text-decoration: none;
    color: inherit;
    display: block;
}
.feature:hover,
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.feature img,
.service img {
    max-width: 100px;
    height: 100px;
    margin-bottom: 10px;
    background: #e0e0e0;
    padding: 10px;
    border-radius: 50%;
}
.about {
    padding: 40px 0;
    background-color: #f4f4f4;
}
.about .container {
    max-width: 1000px;
}
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}
.about-text {
    flex: 2;
}
.about-text p {
    line-height: 1.6;
    margin-bottom: 15px;
}
.call-to-action {
    background: #007bff;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}
.call-to-action p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    .hero-image{
        max-width: 80%;
        margin: 20px auto;
    }
    .contact-info p{
        text-align: center;
    }
    .about-content{
        flex-direction: column;
    }
    .about-image img {
        max-width: 200px;
      }
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));/* Stack vertically on smaller screens */
    }
}