.elementor-15 .elementor-element.elementor-element-e8bc245{text-align:center;}.elementor-15 .elementor-element.elementor-element-e8bc245 .elementor-heading-title{-webkit-text-stroke-width:0px;stroke-width:0px;-webkit-text-stroke-color:#000;stroke:#000;color:#E35F33;}.elementor-15 .elementor-element.elementor-element-4d2b3a8{text-align:center;}/* Start custom CSS for html, class: .elementor-element-0a6d094 */body {
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      margin: 0;
      padding: 0;
    }

    .maid-services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      padding: 50px;
      max-width: 1200px;
      margin: auto;
    }

    .service-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease-in-out;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .service-content {
      padding: 20px;
    }

    .service-content h3 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 12px;
    }

    .service-content ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .service-content ul li {
      font-size: 15px;
      margin-bottom: 8px;
      position: relative;
      padding-left: 18px;
    }

    .service-content ul li::before {
      content: "▸";
      position: absolute;
      left: 0;
      color: #f4a300;
    }

    .service-content a {
      display: inline-block;
      margin-top: 12px;
      font-weight: bold;
      color: #f4a300;
      text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .maid-services {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .maid-services {
        grid-template-columns: 1fr;
      }
    }/* End custom CSS */