.main-logo img{
    height: 2rem;
}
.main-logo .logo-name{
    font-size: 17px;
    color: white;
    margin-left: 8px;
}

/* Language switch button */
.lang-switch-btn {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.lang-switch-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}
.nav-right-part ul li {
    margin-left: 30px;
}
.nav-right-part .btn {
    margin-left: 5px;
}

/* Footer legal links */
.legal-links {
    font-size: 13px;
}
.legal-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.legal-links a:hover {
    color: #fff;
}
.legal-links .mx-2 {
    margin: 0 8px;
    color: rgba(255,255,255,0.4);
}

/* Company Introduction Section */
.company-intro-area {
    background: #f8f9fa;
}

.company-intro-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 40px 48px;
    border: 1px solid #eee;
}

.company-intro-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.company-intro-content h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 28px;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 3px solid var(--main-color);
}

@media (max-width: 768px) {
    .company-intro-card {
        padding: 24px 20px;
    }
}
