.detailBox article {
    background: #fff;
    
    border-radius: 12px;
   
}

.detailBox article h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    padding-bottom: 20px;
    margin: 0 0 35px;
    line-height: 1.4;
    text-align: center;
    position: relative;
}

.detailBox article h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2980b9);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.detailBox article h2 {
    font-size: 26px;
    padding: 15px 20px;
    margin: 50px 0 30px;
    line-height: 1.4;
    color: #2c3e50;
    background: #f8fafc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
}

.detailBox article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #3498db;
    border-radius: 3px 0 0 3px;
}

.detailBox article h3 {
    font-size: 20px;
    color: #2c3e50;
    margin: 30px 0 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.detailBox article p {
    margin: 20px 0;
    line-height: 1.8;
}

.detailBox article .point-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
   
}

 @media screen and ( max-width : 768px ) {
    .detailBox article .point-box {
         padding: 30px 15px;
      }
 }

.detailBox article .point-box::before {
    content: 'POINT';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

 @media screen and ( max-width : 768px ) {
   .detailBox article .point-box::before {
      left: 15px;
      
   }
 }

.detailBox article .toc {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 35px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.detailBox article .toc-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.detailBox article .toc a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.detailBox article .toc a:hover {
    color: #3498db;
}

.detailBox article .qa-box {
    margin: 30px 0;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
}

.detailBox article .question {
    background: #f8fafc;
    padding: 15px 20px;
    margin: -25px -25px 20px -25px;
    border-radius: 12px 12px 0 0;
    font-weight: bold;
    color: #2c3e50;
    border-bottom: 2px solid #e2e8f0;
}

.detailBox article .answer {
    padding-left: 20px;
}

.detailBox article .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detailBox article .content-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.detailBox article .image-container {
    margin: 30px 0;
    text-align: center;
}

.detailBox article .image-caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.detailBox article ul, .detailBox article ol {
    padding-left: 25px;
    margin: 20px 0;
}

.detailBox article li {
    margin: 10px 0;
    line-height: 1.6;
}

.underContent .privacyListWrap .inner .title p{
   padding: 15px;
   background: #003E92;
   color: #fff;
   font-size: 24px;
   margin-bottom: 60px;
   text-align: center;
   border-radius: 10px;
}

@media (max-width: 768px) {
   .underContent .privacyListWrap .inner .title p{
      padding: 15px;
      background: #003E92;
      color: #fff;
      font-size: 18px;
      margin-bottom: 30px;
   }
   .underContent .privacyListWrap .inner .child h3{
      font-size: 18px;
   }
    .detailBox article body {
        padding: 15px;
    }

    .detailBox article article {
        padding: 20px;
    }

   .detailBox article h1 {
        font-size: 24px;
    }

   .detailBox article h2 {
        font-size: 20px;
    }

    .detailBox article h3 {
        font-size: 18px;
    }

    .detailBox article .hero-image {
        height: 300px;
    }

    .detailBox article .content-image {
        max-height: 250px;
    }

    .detailBox article .toc, .point-box, .detailBox article .qa-box {
        padding: 20px;
    }
}


