* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #0c0b0b;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #097620;
    color: rgb(243, 237, 237);
  }
  
  header .logo h1 {
    font-size: 24px;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
  
  .hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: rgb(16, 15, 15);
  }
  
  .hero-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    background-color: #27ae60;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
  }
  
  .cta-btn:hover {
    background-color: #2ecc71;
  }
  
  section {
    padding: 60px 20px;
    text-align: center;
  }
  
  h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .service-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
  }
  
  .service-card {
    background-color: white;
    padding: 30px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  form button {
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
  }
  
  form button:hover {
    background-color: #2ecc71;
  }
  
  footer {
    text-align: center;
    background-color: #05090c;
    color: white;
    padding: 20px;
  }
  
  footer p {
    font-size: 14px;
  }
  