/* ========================================
   페이지별 추가 스타일
   ======================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0 60px;
    margin-top: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb i {
    font-size: 0.7rem;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: var(--white);
}

.content-main {
    max-width: 900px;
    margin: 0 auto;
}

.content-main h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 60px 0 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 40px 0 20px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.content-main p.lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.content-main ul {
    list-style: none;
    margin: 20px 0 30px;
}

.content-main ul li {
    padding: 14px 0 14px 35px;
    position: relative;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 8px;
}

.content-main ul li::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Timeline */
.timeline-intro {
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.7;
}

/* Achievement Section */
.achievement-section {
    margin: 80px 0;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.achievement-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Vision Section */
.vision-section {
    margin: 80px 0;
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vision-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.vision-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-card h3 i {
    color: var(--primary-color);
}

.vision-card p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.7;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-top: 80px;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white) !important;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: var(--white) !important;
}

.cta-box .btn {
    background: var(--white);
    color: var(--primary-color);
}

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

/* Feature Boxes */
.feature-box {
    background: var(--bg-light);
    padding: 45px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
    line-height: 1.8;
}

.feature-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

.feature-box p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-box ul {
    margin-top: 15px;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: var(--white);
    padding: 45px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.info-card h3 {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}

.info-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-card ul {
    margin: 0;
}

.info-card li {
    margin: 0;
}

/* Treatment Cards */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.treatment-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.treatment-card-image {
    height: 200px;
    overflow: hidden;
}

.treatment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.treatment-card:hover .treatment-card-image img {
    transform: scale(1.1);
}

.treatment-card-content {
    padding: 30px;
}

.treatment-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.treatment-card-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.treatment-card-content .btn-link {
    font-weight: 600;
}

/* Table Styles */
.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.content-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.content-table th,
.content-table td {
    padding: 15px 20px;
    text-align: left;
}

.content-table th {
    font-weight: 600;
}

.content-table tbody tr {
    border-bottom: 1px solid var(--bg-light);
}

.content-table tbody tr:hover {
    background: var(--bg-light);
}

.content-table tbody tr:last-child {
    border-bottom: none;
}

/* Alert Boxes */
.alert {
    padding: 25px 30px;
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.8;
}

.alert-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    color: #1565c0;
}

.alert-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    color: #e65100;
}

.alert-success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.alert i {
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-content p {
    line-height: 1.8;
}

.alert-content p:last-child {
    margin-bottom: 0;
}

/* Quote Box */
.quote-box {
    background: var(--bg-light);
    padding: 40px;
    border-left: 5px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    margin: 40px 0;
    font-style: italic;
}

.quote-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
}

.quote-author {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .page-hero p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .content-main h2 {
        font-size: 1.6rem;
        margin: 40px 0 20px;
        line-height: 1.4;
    }
    
    .content-main p.lead {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .content-main ul li {
        padding: 12px 0 12px 30px;
        line-height: 1.8;
    }
    
    .feature-box {
        padding: 30px;
    }
    
    .info-card {
        padding: 30px;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
        padding-left: 0;
    }
    
    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 25px 20px;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .vision-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .info-cards,
    .treatment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-table {
        font-size: 0.9rem;
    }
    
    .content-table th,
    .content-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .feature-box {
        padding: 25px 20px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .quote-box {
        padding: 25px 20px;
    }
    
    .quote-box p {
        font-size: 1rem;
    }
}