/* ========================================
   Clinic Page Styles
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85) 0%, rgba(46, 134, 193, 0.85) 100%), 
                url('../img/about-header-bg.jpg') center center/cover no-repeat;
    color: var(--white);
    padding: 100px 0 80px;
    margin-top: 100px;
    margin-bottom: 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Noto Serif KR', serif;
}

.page-desc {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb i {
    font-size: 10px;
}

/* Sub Navigation */
.sub-nav {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 129px;
    z-index: 99;
    margin-top: 0;
}

.sub-menu {
    display: flex;
    justify-content: center;
    gap: 0;
}

.sub-menu li a {
    display: block;
    padding: 20px 40px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.sub-menu li a:hover,
.sub-menu li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Clinic Detail Section */
.clinic-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.clinic-detail-section.alt-bg {
    background: var(--bg-light);
}

/* Clinic Header */
.clinic-header {
    text-align: center;
    margin-bottom: 60px;
}

.clinic-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
}

.clinic-detail-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Noto Serif KR', serif;
}

.clinic-lead {
    font-size: 18px;
    color: var(--text-light);
}

/* Content Block */
.content-block {
    margin-bottom: 80px;
}

.block-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

/* Symptoms Grid */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.symptom-item {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.symptom-image {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.symptom-image2 {
    width: 70%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.clinic-detail-section.alt-bg .symptom-item {
    background: var(--bg-light);
}

.symptom-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.symptom-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.symptom-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.symptom-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Treatment Grid */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.treatment-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
}

.clinic-detail-section.alt-bg .treatment-card {
    background: var(--white);
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
 
.treatment-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.treatment-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.clinic-detail-section.alt-bg .feature-item {
    background: var(--bg-light);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
}

.feature-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Disease Grid */
.disease-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.disease-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.clinic-detail-section.alt-bg .disease-card {
    background: var(--bg-light);
}

.disease-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.disease-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.disease-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.disease-card ul {
    text-align: left;
    font-size: 14px;
    color: var(--text-light);
    line-height: 2;
}

.disease-card ul li {
    position: relative;
    padding-left: 15px;
}

.disease-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Program Steps */
.program-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.clinic-detail-section.alt-bg .step-item {
    background: var(--bg-light);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.step-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 24px;
    color: var(--primary-color);
}

/* Women Conditions */
.women-conditions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.condition-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.clinic-detail-section.alt-bg .condition-card {
    background: var(--white);
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
 
.condition-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.condition-card > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.condition-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.condition-card ul li {
    font-size: 14px;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
}

.condition-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-item {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.clinic-detail-section.alt-bg .benefit-item {
    background: var(--white);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Diet Programs */
.diet-programs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.clinic-detail-section.alt-bg .program-card {
    background: var(--bg-light);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
}

.program-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.program-duration {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 25px;
}

.program-includes {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.program-includes li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-includes i {
    color: var(--primary-color);
    font-size: 12px;
}

.program-result {
    text-align: center;
}

.program-result strong {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.result-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.result-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Diet Methods */
.diet-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.method-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.clinic-detail-section.alt-bg .method-item {
    background: var(--bg-light);
}

.method-item:hover {
    box-shadow: var(--shadow-md);
}

.method-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.method-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.method-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Clinic CTA */
.clinic-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    color: var(--white);
}

.clinic-cta p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.clinic-cta .btn {
    background: var(--white);
    color: var(--primary-color);
    min-width: 250px;
}

.clinic-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .disease-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diet-programs {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
        margin-top: 70px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .sub-nav {
        top: 90px;
        overflow-x: auto;
    }
    
    .sub-menu {
        flex-wrap: wrap;
        justify-content: start;
        min-width: max-content;
    }
    
    .sub-menu li a {
        padding: 15px 20px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .clinic-detail-section {
        padding: 60px 0;
    }
    
    .clinic-detail-title {
        font-size: 32px;
    }
    
    .block-title {
        font-size: 26px;
    }
    
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .symptom-item {
        padding: 20px 15px;
    }
    
    .symptom-item i {
        font-size: 32px;
    }
    
    .symptom-item h4 {
        font-size: 16px;
    }
    
    .symptom-item p {
        font-size: 13px;
    }
    
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .treatment-card {
        padding: 25px 15px;
    }
    
 
    .treatment-card h4 {
        font-size: 16px;
    }
    
    .treatment-card p {
        font-size: 13px;
    }
    
    .disease-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .disease-card {
        padding: 20px 15px;
    }
    
    .disease-card i {
        font-size: 36px;
    }
    
    .disease-card h4 {
        font-size: 16px;
    }
    
    .disease-card ul {
        font-size: 13px;
    }
    
    .program-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .women-conditions {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .benefit-item i {
        font-size: 32px;
    }
    
    .benefit-item h4 {
        font-size: 16px;
    }
    
    .benefit-item p {
        font-size: 12px;
    }
    
    .diet-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .method-item {
        flex-direction: column;
        padding: 20px 15px;
        align-items: center;
        text-align: center;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .method-item h4 {
        font-size: 16px;
    }
    
    .method-item p {
        font-size: 13px;
    }
    
    .features-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        padding: 20px 15px;
        align-items: center;
        text-align: center;
    }
    
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .feature-content h4 {
        font-size: 16px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    .clinic-cta {
        padding: 40px 25px;
    }
    
    .clinic-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .clinic-badge {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .clinic-detail-title {
        font-size: 26px;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .method-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


 

.treatment-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.treatment-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.treatment-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
}

.treatment-tabs li {
    flex-shrink: 0;
}

.treatment-tabs a {
    display: block;
    padding: 18px 28px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.treatment-tabs a:hover {
    color: #2c7da0;
    background: rgba(44, 125, 160, 0.05);
}

.treatment-tabs a.active {
    color: #2c7da0;
    border-bottom-color: #2c7da0;
    font-weight: 600;
}

.treatment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.treatment-section:nth-child(even) {
    background: white;
}

.section-header-treatment {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(44, 125, 160, 0.1);
    color: #2c7da0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header-treatment h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header-treatment .subtitle {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* 치료 질환 카드 그리드 */
.disease-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.disease-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.disease-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(44, 125, 160, 0.15);
    border-color: #2c7da0;
}

.disease-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e9f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #2c7da0;
}

.disease-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c7da0;
    margin-bottom: 15px;
    text-align: center;
}

.disease-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* 치료 프로그램 리스트 */
.program-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.program-item {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.program-item:hover {
    box-shadow: 0 8px 30px rgba(44, 125, 160, 0.15);
}

.program-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e9f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-image i {
    font-size: 60px;
    color: #2c7da0;
}

.program-content {
    flex: 1;
}

.program-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #2c7da0;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.program-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.program-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-badge {
    padding: 6px 14px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
}

/* 검사 프로그램 그리드 */
.exam-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.exam-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 125, 160, 0.15);
}

.exam-image {
    height: 200px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e9f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.exam-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exam-image i {
    font-size: 60px;
    color: #2c7da0;
}

.exam-content {
    padding: 30px;
}

.exam-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.exam-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* 시스템 프로그램 - 테이블 스타일 */
.system-table {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.system-row {
    background: white;
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
}

.system-row:hover {
    box-shadow: 0 8px 30px rgba(44, 125, 160, 0.15);
}

.system-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e9f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 40px;
    color: #2c7da0;
}

.system-info {
    flex: 1;
}

.system-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.system-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* CTA 섹션 */
.cta-section {
    background: linear-gradient(135deg, #2c7da0 0%, #61a5c2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-primary {
    background: white;
    color: #2c7da0;
}

.cta-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* 반응형 */
@media (max-width: 1024px) {
    .disease-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exam-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
 
    .treatment-tabs {
        justify-content: flex-start;
    }

    .treatment-tabs a {
        padding: 15px 20px;
        font-size: 14px;
    }

    .section-header-treatment h2 {
        font-size: 28px;
    }

    .disease-grid {
        grid-template-columns: 1fr;
    }

    .program-item {
        flex-direction: column;
        padding: 30px 20px;
    }

    .program-image {
        width: 100%;
        height: 180px;
    }

    .system-row {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}



/* 벧엘 뷰티 클리닉 전용 스타일 */
.beauty-clinic-section {
    padding: 50px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.beauty-clinic-header {
    text-align: center;
    margin-bottom: 60px;
}

.beauty-clinic-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.beauty-clinic-badge i {
    font-size: 36px;
    color: #fff;
}

.beauty-clinic-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Noto Serif KR', serif;
}

.beauty-clinic-lead {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.beauty-treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.beauty-treatment-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.beauty-treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d 0%, #c44569 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.beauty-treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.beauty-treatment-card:hover::before {
    transform: scaleX(1);
}

.beauty-treatment-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ffeef5 0%, #ffe5f0 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #c44569;
    font-weight: 500;
    border: 2px dashed #ffb3d1;
}

.beauty-treatment-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Noto Serif KR', serif;
}

.beauty-treatment-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.beauty-treatment-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beauty-treatment-benefits li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.beauty-treatment-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: 700;
    font-size: 16px;
}

.beauty-clinic-cta-section {
    text-align: center;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    padding: 60px;
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.3);
}

.beauty-clinic-cta-section h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Noto Serif KR', serif;
}

.beauty-clinic-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.beauty-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.beauty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.beauty-btn-primary {
    background: #fff;
    color: #c44569;
}

.beauty-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.beauty-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.beauty-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* 반응형 디자인 */
@media (max-width: 992px) {
    .beauty-treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .beauty-clinic-section {
        padding: 60px 0;
    }

    .beauty-clinic-title {
        font-size: 32px;
    }

    .beauty-treatments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .beauty-treatment-image {
        height: 250px;
    }

    .beauty-clinic-cta-section {
        padding: 40px 30px;
    }

    .beauty-clinic-cta-section h3 {
        font-size: 24px;
    }

    .beauty-cta-buttons {
        flex-direction: column;
    }

    .beauty-btn {
        width: 100%;
        justify-content: center;
    }
}