/* General Setup */
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  p {
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Navbar */
  .navbar {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
  }
  
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 1rem;
    background: #f9f9f9;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin: 1rem 0 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-primary {
    background: #007d43;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
  }
  
  .btn-primary:hover {
    background: #007d43;
  }
  
  /* Section Styling */
  .section {
    padding: 4rem 1rem;
  }
  
  .light-bg {
    background-color: #f4f4f4;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  /* Image Grid */
  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .image-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
  
  /* Contact Form */
  .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .contact-wrapper {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .contact-info {
    flex: 1;
  }
  
  .contact-form {
    flex: 1;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
  }
  
  /* Footer */
  footer {
    background: #f1f1f1;
    padding: 1rem;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    margin-top: 2rem;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  