  :root {
            --primary-dark: #0D2D5C;
            --primary-blue: #2563EB;
            --accent-gold: #B45309;
            --accent-teal: #0F766E;
            --light-gray: #F8FAFC;
            --text-dark: #374151;
        }
        
        body {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            color: var(--text-dark);
            background-color: var(--light-gray);
        }
        
        .custom-container {
            width: 70%;
            margin: 0 auto;
        }
        
        @media (max-width: 768px) {
            .custom-container {
                width: 100%;
                padding: 0 15px;
            }
        }
        
        /* 导航栏样式 */
        .navbar {
            background-color: var(--primary-dark);
            padding: 15px 0;
        }
        
        .navbar-brand {
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: white;
        }
        
        .nav-phone {
            color: white;
            font-weight: bold;
            background-color: var(--accent-gold);
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(13, 45, 92, 0.85), rgba(13, 45, 92, 0.9)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .btn-gold {
            background-color: var(--accent-gold);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        
        .btn-gold:hover {
            background-color: #9a4608;
            color: white;
        }
        
        .btn-outline-light {
            border: 2px solid white;
            color: white;
            padding: 10px 28px;
            font-weight: 600;
            border-radius: 5px;
            margin-left: 15px;
        }
        
        /* 核心优势 */
        .section-title {
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--accent-gold);
            margin: 15px auto 0;
        }
        
        .feature-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s;
            border-top: 4px solid var(--primary-blue);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        /* 服务领域 */
        .service-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s;
            border-left: 4px solid var(--accent-teal);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 2rem;
            color: var(--accent-teal);
            margin-bottom: 15px;
        }
        
        /* 成功案例 */
        .case-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            border-bottom: 4px solid var(--accent-gold);
        }
        
        .compensation {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        /* 地域覆盖 */
        .region-section {
            background-color: var(--primary-dark);
            color: white;
            padding: 60px 0;
        }
        
        .region-title {
            text-align: center;
            margin-bottom: 40px;
            font-weight: 600;
        }
        
        .region-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        .region-badge {
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
        }
        
        /* 关于我们 */
        .about-section {
            padding: 80px 0;
            background: white;
        }
        
        .profile-card {
            text-align: center;
            padding: 30px;
        }
        
        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 5px solid var(--light-gray);
        }
        
        /* 咨询表单 */
        .contact-section {
            background: var(--light-gray);
            padding: 80px 0;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-control {
            padding: 12px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 5px;
        }
        
        /* 页脚 */
        .footer {
            background-color: var(--primary-dark);
            color: rgba(255,255,255,0.8);
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }
        
        /* 浮动咨询窗口 */
        .floating-consult {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: white;
            border-radius: 50px;
            padding: 15px 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .floating-consult .btn {
            background: var(--accent-gold);
            color: white;
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 600;
            border: none;
        }
        
        .whatsapp-icon {
            background: #25D366;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        /* 模态框样式 */
        .modal-header {
            background-color: var(--primary-dark);
            color: white;
        }
        
        .modal-title {
            font-weight: 600;
        }
        
        .qr-code-container {
            text-align: center;
            padding: 20px;
        }
        
        .qr-code {
            max-width: 250px;
            margin: 0 auto 15px;
            display: block;
        }
      

/* 律师选择指南模块 */
.guide-section {
    padding: 80px 0;
    background: white;
}

.guide-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s;
    border-top: 4px solid var(--primary-blue); /* 改为与核心优势模块相同的顶部边框 */
    position: relative;
    overflow: hidden;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.guide-icon {
    font-size: 2.5rem; /* 与核心优势模块图标大小一致 */
    color: var(--primary-blue); /* 与核心优势模块图标颜色一致 */
    margin-bottom: 20px;
}

.guide-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

a{
	text-decoration: none;
	color: inherit;
}



 .text-p{
            font-size: 1.6em;
            line-height: 2em;
           
       }
 .text-center {
           text-align: center;
       }
 .col{color: #3da742;	
	 margin-top: 2rem;
	margin-bottom: 2rem;
	 
     }
		
.colz{
			
			font-size: 1.5rem;
		
            line-height: 1.6; /* 增加行高，使文本更易读 */
			}
.cu{
		
			font-size: 1.5rem;
		
            line-height: 1.6; /* 增加行高，使文本更易读 */
			}

.h-m{
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.h3-m{
	margin-top: 1rem;
	margin-bottom: 1rem;
}
