.contact-top-bar {
    background: #1a5276;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}
.contact-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.contact-top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
}
.contact-top-bar a:hover {
    color: #f39c12;
}
.contact-top-bar i {
    margin-right: 5px;
    color: #f39c12;
}
.logo-text-area {
    padding: 15px 0;
}
.logo-text-area a {
    font-size: 18px;
    font-weight: bold;
    color: #1a5276;
    text-decoration: none;
    display: block;
    line-height: 1.3;
}
.logo-text-area a:hover {
    color: #f39c12;
}
.main-nav-menu {
    background: #2c3e50;
}
.main-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.main-nav-menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}
.main-nav-menu ul li a:hover,
.main-nav-menu ul li.active a {
    background: #f39c12;
    color: #fff;
}
.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.service-card h3 {
    color: #1a5276;
    margin-bottom: 15px;
}
.service-card h3 a {
    color: #1a5276;
    text-decoration: none;
}
.service-card h3 a:hover {
    color: #f39c12;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    color: #1a5276;
    font-size: 32px;
    margin-bottom: 15px;
}
.section-title p {
    color: #666;
    font-size: 16px;
}
.hero-section {
    background: linear-gradient(135deg, #1a5276 0%, #2c3e50 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.hero-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.btn-primary-custom {
    background: #f39c12;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}
.btn-primary-custom:hover {
    background: #e67e22;
    color: #fff;
}
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-item h3 {
    font-size: 48px;
    color: #f39c12;
    margin-bottom: 10px;
}
.stat-item p {
    font-size: 16px;
    color: #666;
}
.timeline-section {
    padding: 60px 0;
}
.timeline-item {
    padding: 20px;
    border-left: 3px solid #f39c12;
    margin-left: 20px;
    position: relative;
    margin-bottom: 20px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #f39c12;
    border-radius: 50%;
}
.timeline-item h4 {
    color: #1a5276;
    margin-bottom: 10px;
}
.qualifications-section {
    background: #1a5276;
    color: #fff;
    padding: 60px 0;
}
.qualifications-section h2 {
    color: #fff;
}
.qual-item {
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    margin-bottom: 15px;
}
.qual-item i {
    color: #f39c12;
    margin-right: 10px;
}
.footer-custom {
    background: #2c3e50;
    color: #fff;
    padding: 40px 0 20px;
}
.footer-custom h4 {
    color: #fff;
}
.footer-custom p {
    color: #fff;
}
.footer-custom a {
    color: #f39c12;
    text-decoration: none;
}
.footer-custom a:hover {
    color: #fff;
}
.footer-custom ul {
    list-style: none;
    padding: 0;
}
.footer-custom ul li a {
    color: #f39c12;
    text-decoration: none;
}
.footer-custom ul li a:hover {
    color: #fff;
}
.contact-icon {
    color: #f39c12;
}
.contact-form {
    list-style: none;
    padding: 0;
}
.hr-footer {
    border-color: rgba(255,255,255,0.2);
}

/* 手机端响应式 */
@media (max-width: 767px) {
    .container { width: 100%; padding: 0 15px; }
    .contact-top-bar { padding: 10px 0; }
    .contact-top-bar .container { flex-direction: column; text-align: center; }
    .contact-top-bar .container > div { margin: 5px 0; }
    .contact-top-bar img { max-width: 100%; height: auto; margin-bottom: 5px; }
    .contact-top-bar a { margin: 5px 10px; display: inline-block; }
    .logo-text-area { padding: 10px 0; }
    .logo-text-area a { font-size: 12px; text-align: center; line-height: 1.4; word-break: break-all; }
    .main-nav-menu { position: relative; }
    .main-nav-menu ul { flex-direction: column; display: none; }
    .main-nav-menu ul.active { display: flex; }
    .main-nav-menu ul li { width: 100%; }
    .main-nav-menu ul li a { padding: 12px 15px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); display: block; }
    .main-nav-menu .menu-toggle { display: block; padding: 15px; text-align: center; color: #fff; font-size: 20px; cursor: pointer; }
    .hero-section { padding: 40px 0; }
    .hero-section h1 { font-size: 20px; line-height: 1.3; }
    .hero-section p { font-size: 13px; }
    .section-title h2 { font-size: 20px; }
    .section-title p { font-size: 13px; }
    .service-card { padding: 20px; }
    .stat-item h3 { font-size: 32px; }
    .stat-item p { font-size: 14px; }
    .btn-primary-custom { padding: 10px 20px; font-size: 13px; }
    .footer-custom { padding: 25px 0 15px; }
    .footer-custom h4 { font-size: 15px; margin-bottom: 10px; }
    .footer-custom p { font-size: 12px; }
    .row > [class*="col-"] { width: 100%; }
}
@media (min-width: 768px) {
    .main-nav-menu .menu-toggle { display: none; }
}
