: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;
  }

.banner-title, .banner h1, .banner h2, .banner h3, .banner h4, .banner h5, .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);
    margin-bottom: 15px; 
}

.small-text {
    font-size: 14px;
}

.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);
}

.sidebar-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.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;
}


.section-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 15px 0; 
}


.feature-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.cta-section {
    background-color: var(--primary);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: white;
    margin: 20px 0; 
}

.cta-content {
    position: relative;
    z-index: 1;
}


.btn-large {
    display: inline-block;
    background-color: var(--primary); 
    color: white; 
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.cta-section .btn-large {
    background-color: white;
    color: var(--primary);
    border: 2px solid white;
}

.cta-section .btn-large:hover {
background-color: #f0f0f0;
color: #0056b3;
border: 2px solid #fff;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
opacity: 1;
transform: translateY(-2px);
}

.btn-large:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 15px 0 30px 0; 
}

.stat-box {
    flex: 1;
    min-width: 200px;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
}

.investment-areas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin: 15px 0 30px 0; 
}

.investment-area {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.investment-area:hover {
    transform: translateY(-5px);
}

.investment-area i {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 15px;
}


.bs-container {
    display: flex;
    flex-direction: column;
    gap: 20px; 
    margin: 20px 0 20px 0;
}

.bs-card {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.bs-img-container {
    width: 30%;
}

.bs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bs-content {
    width: 70%;
    padding: 25px;
}

.bs-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 20px;
}

.segment-content h4 {
    color: #0056b3;
    margin-bottom: 10px;
    font-size: 20px;
}

.portfolio-companies {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.portfolio-company {
    text-align: center;
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
}

.global-presence {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.global-presence h3 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 20px;
}


.global-presence p {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
    color: var(--text-dark);
}

.milestone p {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
    color: var(--text-dark);
}

.milestone {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.milestone:last-child {
    border-bottom: none;
}

.milestone h4 {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.milestone h4 i {
    margin-right: 10px;
    color: #0056b3;
}

.funds-list {
    margin-top: 20px;
}

.fund-item {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.fund-item h4 {
    color: #0056b3;
    margin-bottom: 10px;
    font-size: 16px;
}


.fund-item p {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
    color: var(--text-dark);
}

.key-facts p {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
    color: var(--text-dark);
}

.cooperation {
    margin: 30px 0;
}

.cooperation h3 {
    color: #0056b3;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0056b3;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.partner {
    background-color: white;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.section-title {
    color: var(--primary);
    font-size: 24px;
    margin: 40px 0 15px; 
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}