* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      line-height: 1.6;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      z-index: 1000;
    }

    h1 {
        line-height: 1.1;
    }

    .logo {
      font-weight: bold;
      font-size: 18px;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .phone {
      background: rgb(240, 220, 93);
      color: black;
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }

    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      padding: 100px 50px 50px;
      background: #f5f5f5;
      justify-content: space-between;
    }

    .hero-content {
      max-width: 50%;
    }

    .hero-image {
      max-width: 45%;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .cta {
      display: inline-block;
      padding: 15px 25px;
      background: rgb(240, 220, 93);
      color: black;
      text-decoration: none;
      border-radius: 5px;
      font-size: 18px;
      font-weight: bold;
    }

    .section {
      padding: 80px 50px;
    }

    .section h2 {
      font-size: 32px;
      margin-bottom: 30px;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .card {
      background: #f5f5f5;
      padding: 20px;
      border-radius: 10px;
    }

    .card img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 10px;
    }

    footer {
      text-align: center;
      padding: 30px;
      background: black;
      color: white;
    }

    @media (max-width: 768px) {
      .hero {
      flex-direction: column;
    }

    .hero-content,
    .hero-image {
      max-width: 100%;
    }

    .hero-image {
      margin-top: 20px;
      display: none;
    }
}
