html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-stat-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e8edf2;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.about-stat-card:hover {
    border-color: rgba(14,97,153,0.2);
    box-shadow: 0 4px 20px rgba(14,97,153,0.08);
}
.about-stat-number {
    font-size: 2.5em;
    font-weight: 800;
    color: #1b225a;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.about-stat-label {
    font-size: 0.95em;
    color: #555;
    font-weight: 500;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}
.dept-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    border-left: 3px solid #0e6199;
    transition: background 0.2s, transform 0.2s;
}
.dept-item:hover {
    background: #eaf6ff;
    transform: translateX(5px);
}
.dept-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1b225a;
    margin: 0;
}
.dept-item p {
    font-size: 0.85em;
    color: #666;
    margin: 0.3rem 0 0;
}

.equipment-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #e8edf2;
    padding: 2rem;
    height: 100%;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.equipment-card:hover {
    border-color: rgba(14,97,153,0.25);
    box-shadow: 0 6px 28px rgba(14,97,153,0.10);
}
.equipment-card .eq-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e6199;
    font-size: 1.4em;
    margin-bottom: 1.2rem;
    background: #f0f7fc;
}
.equipment-card h4 {
    color: #1b225a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.equipment-card p {
    color: #4a5568;
    font-size: 0.95em;
    line-height: 1.55;
    margin: 0;
}

.strategy-banner {
    background: linear-gradient(135deg, #1b225a 0%, #0e6199 100%);
    border-radius: 20px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.strategy-banner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}
.strategy-banner p {
    font-size: 1.05em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}
.strategy-banner .strategy-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #9a917d;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-info-area {
    background: #f8fafc;
}
.timeline-center {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.timeline-center:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d5dce4;
    transform: translateX(-50%);
}
.timeline-center-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    width: 50%;
}
.timeline-center-item:last-child {
    margin-bottom: 0;
}
.timeline-center-item.tl-left {
    margin-right: auto;
    padding-right: 50px;
    flex-direction: row-reverse;
}
.timeline-center-item.tl-right {
    margin-left: auto;
    padding-left: 50px;
}
.timeline-center-item.tl-left .tl-year {
    position: absolute;
    right: -36px;
}
.timeline-center-item.tl-right .tl-year {
    position: absolute;
    left: -36px;
}
.tl-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 20px;
    padding: 20px 24px;
    width: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.timeline-center-item:hover .tl-card {
    border-color: rgba(14,97,153,0.2);
    box-shadow: 0 4px 16px rgba(14,97,153,0.06);
}
.timeline-center-item.tl-left .tl-card {
    text-align: right;
}
.timeline-center-item.tl-right .tl-card {
    text-align: left;
}
.tl-year {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: #fff;
    border: 2px solid #d5dce4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.timeline-center-item:hover .tl-year {
    border-color: #0e6199;
    box-shadow: 0 0 0 4px rgba(14,97,153,0.08);
}
.tl-year span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1b225a;
    letter-spacing: 1px;
}
.tl-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1b225a;
    margin: 0 0 6px;
}
.tl-card p {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .timeline-center:before {
        left: 44px;
    }
    .timeline-center-item,
    .timeline-center-item.tl-left,
    .timeline-center-item.tl-right {
        width: 100%;
        padding: 0 0 0 80px;
        flex-direction: row;
        margin-left: 0;
        margin-right: 0;
    }
    .timeline-center-item.tl-left .tl-year,
    .timeline-center-item.tl-right .tl-year {
        position: absolute;
        left: 0;
        right: auto;
    }
    .timeline-center-item.tl-left .tl-card,
    .timeline-center-item.tl-right .tl-card {
        text-align: left;
    }
    .tl-year {
        width: 48px;
        height: 48px;
    }
    .tl-year span {
        font-size: 0.8rem;
    }
    .tl-card {
        padding: 14px 16px;
        border-radius: 14px;
    }
    .tl-card h4 {
        font-size: 0.95rem;
    }
    .tl-card p {
        font-size: 0.85rem;
    }
    .timeline-center-item {
        margin-bottom: 24px;
    }
}

.info-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #e8edf2;
    padding: 32px 36px;
    margin-bottom: 0;
    position: relative;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.info-card:hover {
    border-color: rgba(14,97,153,0.25);
    box-shadow: 0 6px 28px rgba(14,97,153,0.10);
}
.info-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef2f6;
}
.info-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    padding: 7px;
    background: transparent;
    opacity: 0.85;
    flex-shrink: 0;
}
.info-card-title {
    font-size: 1.25rem;
    color: #1b225a;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0;
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-list li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 14px;
    position: relative;
    line-height: 1.55;
}
.info-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0e6199;
    opacity: 0.5;
}
.info-list li:last-child {
    margin-bottom: 0;
}
.info-list li strong {
    color: #1b225a;
    font-weight: 600;
}

.contact-info-card {
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #e8edf2;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
}
.contact-info-card:hover {
    border-color: rgba(14,97,153,0.25);
    box-shadow: 0 6px 28px rgba(14,97,153,0.10);
}
.contact-icon {
    width: 46px;
    height: 46px;
    background: #f0f7fc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: #0e6199;
    font-size: 18px;
    transition: background 0.3s ease;
}
.contact-info-card:hover .contact-icon {
    background: #e0f1fe;
}
.contact-title {
    color: #1b225a;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.contact-text {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}
.contact-text a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-text a:hover {
    color: #0e6199;
}

@media (max-width: 991px) {
    .info-card { padding: 24px 20px; border-radius: 24px; }
    .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .about-stat-number { font-size: 2em; }
    .strategy-banner { padding: 2rem 1.5rem; }
    .strategy-banner .strategy-amount { font-size: 2rem; }
    .strategy-banner .row { flex-direction: column; }
    .strategy-banner .col-lg-4 { text-align: center; margin-bottom: 1.5rem; }
    .info-card { padding: 22px 18px; margin-bottom: 20px; border-radius: 20px; }
    .contact-info-card { padding: 1.5rem 1rem; margin-bottom: 1rem; }
    .equipment-card { padding: 1.5rem; border-radius: 20px; }
    .equipment-card .eq-icon { width: 40px; height: 40px; font-size: 1.1em; border-radius: 12px; }
    .contact-info-card { border-radius: 20px; padding: 1.5rem 1rem; }
}
@media (max-width: 480px) {
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .about-stat-card { padding: 1.2rem 1rem; }
    .about-stat-number { font-size: 1.8em; }
    .strategy-banner { padding: 1.5rem; border-radius: 12px; }
    .strategy-banner h3 { font-size: 1.3rem; }
    .strategy-banner p { font-size: 0.95em; }
    .strategy-banner .strategy-amount { font-size: 1.6rem; }
    .timeline-modern-content h4 { font-size: 1rem; }
    .timeline-modern-content p { font-size: 0.9rem; }
    .info-card { padding: 18px 16px; border-radius: 18px; }
    .info-card-title { font-size: 1.1rem; }
    .info-list li { font-size: 0.9rem; margin-bottom: 10px; }
}

.mb-60 {
    margin-bottom: 60px;
}