/* Additional CSS for Treatment Detail Page */
    .treatment-detail-warp {
        background-color: #FFF5D0;
    }
    
    .details-big-warp {
        background: #fff;
        padding: 50px;
        border-radius: 24px;
        box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    }
    
    .details-big-warp h2 {
        font-size: 36px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .main-image {
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 30px;
    }
    
    .main-image img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }
    
    .details-big-warp .frist-p {
        font-size: 18px;
        font-weight: 500;
        color: #333;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .details-big-warp p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
        text-align: justify;
    }
    
    .treatment-key-points {
        background: #FFF5D0;
        padding: 25px 30px;
        border-radius: 16px;
        margin: 25px 0;
    }
    
    .treatment-key-points h5 {
        font-size: 18px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 15px;
    }
    
    .treatment-key-points ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .treatment-key-points ul li {
        font-size: 15px;
        color: #555;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .treatment-key-points ul li i {
        color: #F4BC3E;
        font-size: 18px;
    }
    
    .content2 h5 {
        font-size: 22px;
        font-weight: 600;
        color: #F4BC3E;
        margin: 30px 0 15px;
    }
    
    .content2 .frist-p {
        font-size: 16px;
        font-weight: 400;
        color: #555;
    }
    
    .content2 .second-p {
        margin-top: 15px;
    }
    
    .treatment-process-list {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    
    .treatment-process-list li {
        font-size: 15px;
        color: #555;
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
        line-height: 1.7;
    }
    
    .treatment-process-list li:before {
        content: "▸";
        position: absolute;
        left: 0;
        color: #F4BC3E;
        font-weight: bold;
    }
    
    .style-tag {
        background: #f9f9f9;
        padding: 30px;
        border-radius: 16px;
        margin: 30px 0;
        border-left: 4px solid #F4BC3E;
    }
    
    .style-tag h6 {
        font-size: 18px;
        line-height: 1.7;
        color: #2c3e50;
        margin: 0;
        font-style: italic;
    }
    
    .treatment-table {
        margin: 30px 0;
    }
    
    .treatment-table h5 {
        font-size: 20px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 15px;
    }
    
    .treatment-table .table {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #eee;
    }
    
    .treatment-table .table td {
        padding: 12px 20px;
        font-size: 15px;
        color: #555;
        border-color: #eee;
    }
    
    .treatment-table .table td:first-child {
        background: #FFF5D0;
        font-weight: 600;
        color: #2c3e50;
        width: 30%;
    }
    
    .treatment-cta {
        background: #FFF5D0;
        padding: 40px;
        border-radius: 16px;
        text-align: center;
        margin: 30px 0;
    }
    
    .treatment-cta h3 {
        font-size: 28px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    
    .treatment-cta p {
        font-size: 16px;
        color: #666;
        margin-bottom: 20px;
    }
    
    .treatment-cta .default-btn.style2 {
        background: transparent;
        border: 2px solid #F4BC3E;
        color: #F4BC3E;
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }
    
    .treatment-cta .default-btn.style2:hover {
        background: #F4BC3E;
        color: #fff;
    }
    
    .back-link {
        text-align: center;
        margin-top: 25px;
    }
    
    .back-link a {
        color: #F4BC3E;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .back-link a:hover {
        color: #d49c1a;
        gap: 12px;
    }
    
    @media (max-width: 991px) {
        .details-big-warp {
            padding: 30px;
        }
        .details-big-warp h2 {
            font-size: 30px;
        }
        .main-image img {
            height: 350px;
        }
        .treatment-key-points ul {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .details-big-warp {
            padding: 20px;
        }
        .details-big-warp h2 {
            font-size: 24px;
        }
        .main-image img {
            height: 250px;
        }
        .style-tag {
            padding: 20px;
        }
        .treatment-cta {
            padding: 25px 20px;
        }
        .treatment-cta h3 {
            font-size: 22px;
        }
        .treatment-table .table td {
            padding: 10px 15px;
            font-size: 14px;
        }
        .content2 h5 {
            font-size: 18px;
        }
    }
    
    @media (max-width: 480px) {
        .details-big-warp {
            padding: 15px;
        }
        .details-big-warp h2 {
            font-size: 20px;
        }
        .main-image img {
            height: 180px;
        }
        .treatment-key-points {
            padding: 15px;
        }
        .treatment-key-points ul li {
            font-size: 14px;
        }
        .treatment-process-list li {
            font-size: 14px;
        }
    }
