.service-hero{
    text-align: center;
    padding: 60px 20px 30px;
}

.service-title{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-top: -10px;
  margin-left: -7rem;
  
}
.service-title img{
    width: 150px;
    height: auto;  
}
.service-title h1{
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 0.02em;
    margin-right: 3px;
    color: #fff;
}
.service-slogan{
    font-size: 22px;
    margin-top: 8px;
    margin-left: 5px;
    color: #eee;
}
.overview-box{
    background: #444;
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 60px 40px;
    border-radius: 40px;
}
.overview-box h2{
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
}
.overview-box p{
    line-height: 1.8;
    text-align: center;
}
.offer-box{
    background: #808080;
    margin:40px auto 0;
    padding:40px;
    border-radius:30px;
    max-width: 700px;
}
.offer-box h3{
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}
.offer-box ul{
    list-style: none;
    padding: 0;
}
.offer-box li{
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255,0.2);
}
.price-box{
    background: #666;
    margin:40px auto 0;
    padding: 35px 40px;
    border-radius:30px;
    max-width: 700px;
}
.price-box h3{
    text-align: center;
    margin-bottom: 25px;
    font-size: 20px;
}
.price-row{
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255,0.2);
}
.price-row:last-child{
    border-bottom: none;
}
.label{
    font-weight: bold;
}
.value{
    color: #FFD700;
    font-weight: bold;
}
.note{
    text-align: center;
    font-size: 14px;
    margin-top:20px;
    color: #ddd;
}
.action-area{
    text-align: center;
    margin-top: 40px;
}
.btn{
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.gold{
    background: goldenrod;
    color: #fff;
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
}
@media(max-width: 768px){
   .service-hero{
      padding: 40px 16px 20px;
   }
   .service-title{
     flex-direction: column;
     margin-left: 0;
     gap:10px;
   }
   .service-title img{
      width: 90px;
   }
   .service-title h1{
     font-size: 20px;
     text-align: center;
   }
   .service-slogan{
    font-size: 16px;
    margin-left: 0;
    text-align: center;
   }
   .overview-box{
     margin: 30px 16px 60px ;
     padding: 30px 20px;
     border-radius: 20px;
   }
   .overview-box h2{
    font-size: 20px;
   }
   .offer-box p{
    font-size: 14px;
    line-height: 1.7;
   }
   .offer-box{
    padding: 25px 20px;
    border-radius: 20px;
   }
   .offer-box h3{
    font-size: 18px;
   }
   .offer-box li{
    font-size: 14px;
   }
   .price-box{
    flex-direction: column;
    gap:4px;
    align-items: flex-start;
   }
   .label{
    font-size: 14px;
   }
   .value{
    font-size: 15px;
   }
   .btn{
    font-size: 16px;
    padding: 12px 24px;
   }
   .action-area{
    margin-top: 30px;
   }
}