
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: #333;
    }

    header {
      display: flex;
      justify-content: space-between;
      padding: 20px 40px;
    }

    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #333;
    }

    /* HERO */
    .hero {
         background-image: 
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/ro-repair-and-services-banner.jpg");
  background-size: cover;      
  background-repeat: no-repeat; 
  background-position: center;  
    width: 100%;
      height: auto;
      /* background: #f5f5f505; */
      padding: 80px 20px;
      text-align: center;
    }

    .hero h1 {
      font-size: 40px;
    }

    .btn {
      padding: 10px 20px;
      border: 1px solid #000;
      display: inline-block;
      margin-top: 15px;
      text-decoration: none;
    }

    /* FEATURES */
    .features {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    .box {
      padding: 20px;
      width: 200px;
      text-align: center;
    }

    /* TRUST SECTION */
    .trust {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px;
    }

    .trust img {
      width: 300px;
    }

    /* SERVICES */
    .services {
      background: #dceff2;
      padding: 60px 20px;
      text-align: center;
    }

    .service-img {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .service-img img {
      width: 200px;
    }

    /* STAY PURE */
    .stay {
      text-align: center;
      padding: 60px 20px;
    }

    /* REVIEWS */
    .reviews {
      text-align: center;
      padding: 60px 20px;
    }

    .review-box {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .review {
      background: #eaf6ff;
      padding: 20px;
      width: 300px;
    }

    /* FOOTER */
    footer {
      background: #0c2d3a;
      color: #fff;
      padding: 40px;
      display: flex;
      justify-content: space-between;
    }
 