.container{
    /* width: 1200px; */
    margin: auto;
  }
  
  .service-hero{
    background:#f5f3ef;
    padding:120px 0;
    text-align:center;
    background-image: url('/static/img/home.jpeg');
  }
  
  /* .service-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      rgba(0,0,0,0.6),
      rgba(0,0,0,0.2)
    );
    z-index: 1;
  } */
  .service-tag{
    background:#e6efe9;
    color:#3f6b4f;
    padding:6px 14px;
    border-radius:20px;
    font-size:14px;
  }
  .service-hero .container{
    position: relative;
    z-index: 2;
  }
  .service-hero h1{
    font-size:52px;
    color: white;
    margin-top:20px;
    font-weight:600;
  }
  
  .service-hero p{
    max-width:650px;
    margin:20px auto;
    color: rgba(215, 196, 251, 0.91);
  }
  
  .service-details{
    padding:100px 0;
  }
  
  .service-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
  }
  
  .service-content h2{
    font-size:32px;
    margin-bottom:10px;
  }
  
  .service-content p{
    color:#777;
    margin-bottom:20px;
  }
  
  .service-list{
    list-style:none;
    padding:0;
  }
  
  .service-list li{
    margin-bottom:10px;
    position:relative;
    padding-left:25px;
  }
  
  .service-list li::before{
    content:"✓";
    color:#4b7f5d;
    position:absolute;
    left:0;
  }
  
  .service-note{
    font-size:14px;
    color:#6a8f7c;
    margin:20px 0;
  }
  
  .quote-btn{
    display:inline-block;
    background:#4b7f5d;
    color:white;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
  }
  
  .quote-btn:hover{
    background:#3c6c4c;
  }

  .services-section{
    max-width:1200px;
    margin:auto;
    padding:100px 20px;
    }
    
    .service-block{
    display:flex;
    align-items:center;
    gap:80px;
    margin-bottom:120px;
    }
    
    .service-block.reverse{
    flex-direction:row-reverse;
    }
    
    .service-image img{
      width:520px;
      height: 500px;
      border-radius:14px;
    }
    
    .service-content{
    max-width:500px;
    }
    
    .service-content h2{
    font-size:32px;
    margin-bottom:15px;
    }
    
    .service-content p{
    color:#6a6a6a;
    line-height:1.6;
    margin-bottom:20px;
    }
    
    .service-content ul{
    list-style:none;
    padding:0;
    margin-bottom:25px;
    }
    
    .service-content ul li{
    margin-bottom:8px;
    }
    
    .service-btn{
    display:inline-block;
    background:#3e6b4f;
    color:white;
    padding:12px 24px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    }
    
    .service-btn:hover{
    background:#2f523c;
    }
/* =============================================
   SERVICES MOBILE FIXES
   ============================================= */

@media (max-width: 900px) {
  .service-block,
  .service-block.reverse {
    flex-direction: column !important;
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
  }

  .service-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: 260px !important;
    object-fit: cover;
  }

  .service-content {
    max-width: 100% !important;
  }

  .services-section {
    padding: 50px 16px !important;
  }

  .service-hero {
    padding: 80px 16px !important;
  }

  .service-hero h1 {
    font-size: 32px !important;
  }
}

@media (max-width: 480px) {
  .service-content h2 {
    font-size: 24px;
  }

  .service-image img {
    height: 280px !important;
  }
}