/* Nonsurgical Showcase Specific */



.nonsurgical-showcase-highlights {
    text-align: center;
    margin: 80px 0;
    line-height: 1.8;
}

.nonsurgical-showcase-highlights p {
    font-size: 30px;
    color: #333;
    font-weight: lighter;
    margin-bottom: 0.5rem;
}

.nonsurgical-showcase-highlights .text-accent-blue {
    color: #2ab6c6;
    font-weight: normal;
}

.nonsurgical-device-box {
    background: #ffffff;
    border-radius: 40px;
    padding: 100px 60px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.nonsurgical-section-white .nonsurgical-device-box {
    background: #EDF1F3;
    box-shadow: none;
}

.device-title {
    font-size: 54px;
    font-weight: lighter;
    color: #333;
    margin-bottom: 60px;
}

.device-title .text-accent-blue {
    color: #2ab6c6;
    font-weight: normal;
}

.device-image {
    max-width: 500px;
    margin: 0 auto 60px;
}

.device-image img {
    width: 100%;
    height: auto;
}

.device-desc {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 30px;
    font-weight: lighter;
    color: #444;
    line-height: 1.8;
    text-align: center;
    word-break: keep-all;
}

.device-desc .highlight-blue {
    color: #2ab6c6;
    font-weight: normal;
}

@media (max-width: 1400px) {
    .nonsurgical-showcase-highlights p {
        font-size: 1.1rem;
    }

    .device-title {
        font-size: 2rem;
    }

    .nonsurgical-device-box {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .device-desc {
        font-size: 18px;
    }

    .device-title {
        font-size: 30px;
    }
}

/* Treatment Target List (For Ultrasound section) */
.treatment-targets {
    margin: 60px 0;
}

.targets-title {
    font-size: 40px;
    font-weight: normal;
    color: #333;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 10px solid #2ab6c6;
}

.targets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
}

.target-item {
    font-size: 30px;
    font-weight: lighter;
    color: #444;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .targets-grid {
        grid-template-columns: 1fr;
    }

    .target-item {
        font-size: 20px;
    }

    .nonsurgical-item-desc {
        font-size: 18px;
    }

    .nonsurgical-content {
        gap: 10px;
    }

    .nonsurgical-showcase-highlights {
        margin: 40px 0;
    }

    .targets-title {
        font-size: 30px;
    }

}

/* Nonsurgical Center Banner (Used in PDRN section) */
.nonsurgical-banner {
    border: 1px solid #333;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    margin: 60px 0;
    font-size: 30px;
    font-weight: lighter;
    color: #333;
}

.nonsurgical-banner .text-accent-red {
    color: #ff4b4b;
    font-weight: normal;
}

@media (max-width: 1400px) {
    .nonsurgical-banner {
        font-size: 1.1rem;
        padding: 20px 15px;
    }
}