:root {
    --primary: #0056b3;
    --primary-dark: #004a8f;
    --primary-light: #e3f2fd;
    --text-dark: #333333;
    --text-light: #666666;
    --accent: #90CAF9;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow: rgba(0,0,0,0.08);
}


body, p, a, span, div, li, button, input, textarea, .btn-large {
    font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
    font-size: 16px;
    color: #222;
}

h1, h2, h3, h4, h5, h6:not(.footer-new h3):not(.footer-new h4) {
    color: #0056B3 !important;
}

.footer-new h3, .footer-new h4, header h1, header h2, header h3, header h4, header h5, header h6 {
    color: #fff !important;
}


.banner-title, .banner h1, .banner h2, .banner h3, .banner h4, .banner h5, .banner h6, .subpage-banner h1, .subpage-banner h2, .subpage-banner h3, .subpage-banner h4, .subpage-banner h5, .subpage-banner h6 {
    color: #fff !important;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.small-text {
    font-size: 14px;
}


.company-overview {
    margin-bottom: 30px;
}

.overview-header {
    margin-bottom: 25px;
}

.overview-content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.overview-text {
    flex: 1.3;
}

.overview-text p {
    margin: 20px 0;
    line-height: 1.6;
    font-size: 16px;
    color: #333333;
    font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
}

.overview-image {
    flex: 1;
}

.rounded-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.investment-approach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.approach-item {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.approach-icon {
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.approach-content h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 20px;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    font-weight: 600;
}

.approach-content p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 14px;
    font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
}

.key-stats-section {
    margin: 30px 0;
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px var(--shadow);
}

.sidebar-section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stats-header {
    margin-bottom: 20px;
}

.key-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
    font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #333333;
    line-height: 1.4;
    font-family: 'Noto Sans', 'Noto Sans SC', sans-serif;
}

.strategic-advantage, .team-section {
    margin: 20px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.section-title {
    color: var(--primary);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0,86,179,0.2);
    margin-bottom: 20px;
}

.cta-section h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.cta-section {
    margin-top: 20px;
}


.sidebar-section {
    margin-bottom: 20px; 
    padding: 20px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    background-color: white;
    border-radius: 10px;
}

.sidebar-section h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--primary);
    font-weight: 600;
}


.achievement p,
.portfolio-item p {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

.achievement {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.achievement:last-child,
.portfolio-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.focus-icon i,
.company-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}



.focus-icon {
    margin-right: 10px;
    width: 20px;
    display: inline-block;
}

.company-name {
    display: block;
    margin-bottom: 0;
    line-height: 1.4;
}



.strategic-advantage {
    margin-top: 20px;
    margin-bottom: 20px;
}

.full-width-image-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

.full-width-image-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-title i {
    margin-right: 12px;
    font-size: 0.9em;
}

.advantage-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.advantage-text {
    flex: 1.3;
}

.advantage-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.main-advantage-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.small-images {
    display: flex;
    gap: 20px;
}

.small-advantage-image {
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: cover;
    height: 120px;
}

.highlight-text {
    font-size: 16px;
    color: var(--primary);
    line-height: 1.6;
    margin: 20px 0;
    font-weight: 500;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.advantage-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantage-point {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.advantage-point i {
    background-color: #0056b3;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-point h4 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}

.advantage-point p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.quote-box {
    background: linear-gradient(135deg, #e6f0f9, #d1e3f6);
    padding: 20px 25px;
    border-radius: 8px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 0;
}

.quote-icon {
    color: rgba(0,86,179,0.2);
    font-size: 2.5em;
    position: absolute;
    top: 15px;
    left: 20px;
}

.quote-text {
    font-style: italic;
    color: var(--primary-dark);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 35px;
}

.quote-author {
    text-align: right;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

.page-title {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #0056b3, rgba(0,86,179,0.3));
    margin-bottom: 20px;
}

.leadership-list {
    padding-left: 20px;
}

.leadership-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.sidebar-logo {
    width: 100%;
    max-width: 180px;
    margin-bottom: 15px;
}

.company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stock-info {
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
}

.stock-label {
    font-weight: bold;
    color: #666;
}

.stock-value {
    color: #0056b3;
    font-weight: bold;
}

.focus-icon {
    display: inline-block;
    width: 30px;
    color: #0056b3;
    margin-right: 10px;
}

.achievement {
    display: flex;
    align-items: center;
}

.portfolio-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-header {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Roboto', 'Noto Sans SC', sans-serif;
    font-weight: 600;
    color: #0056b3;
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

.view-more {
    display: inline-block;
    color: #0056b3;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #0056b3;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.view-more:hover {
    background-color: #0056b3;
    color: white;
}

@media (max-width: 992px) {
    .overview-content {
        flex-direction: column;
    }
    
    .investment-approach {
        grid-template-columns: 1fr;
    }
    
    .key-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        margin: 10px 0;
    }
    
    .advantage-content {
        flex-direction: column;
    }
    
    .small-images {
        justify-content: center;
    }
}


.about-medical-container {
    display: flex;
    margin: 20px 0;
    gap: 20px;
    align-items: center;
}

.about-medical-text {
    flex: 1;
}

.about-medical-image {
    flex: 1;
    text-align: center;
}

.about-medical-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .about-medical-container {
        flex-direction: column;
    }
    
    .about-medical-image {
        margin-top: 20px;
    }
    
    .key-stats {
        grid-template-columns: 1fr;
    }
}