:root {
	--primary-color: #FF6900;
	--secondary-color: #333333;
	--accent-gold: #CDA485;
	--accent-silver: #858789;
	--light-bg: #f8f9fa;
}

body {
	font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
	color: var(--secondary-color);
	background-color: #fff;
}

/* 品牌字体 */
.brand-font {
	font-weight: 700;
	letter-spacing: 1px;
}

/* 页面标题 */
.page-header {
	/*background: linear-gradient(rgba(51, 51, 51, 0.9), rgba(51, 51, 51, 0.9)),*/
	/*	url('../img/legal-banner.jpg') no-repeat center center;*/
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
	url('../img/legal-banner.jpg') no-repeat center center;') no-repeat center center;
	background-size: cover;
	padding: 100px 0;
	color: white;
	text-align: center;
}

.page-header h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.page-header p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.9;
}

/* 主要内容区域 */
.main-content {
	padding: 80px 0;
}

/* 律师介绍 */
.lawyer-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
	transition: all 0.3s;
	height: 100%;
}

.lawyer-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.lawyer-image {
	height: 280px;
	background-size: cover;
	background-position: center;
}

.lawyer-content {
	padding: 25px;
}

.lawyer-name {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 10px;
}

.lawyer-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
	display: block;
}

.lawyer-info {
	color: #666;
	line-height: 1.8;
	margin-bottom: 20px;
}

.expertise {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.expertise-item {
	background: var(--light-bg);
	padding: 6px 15px;
	border-radius: 20px;
	margin: 0 10px 10px 0;
	font-size: 0.9rem;
}

/* 常见问题 */
.faq-section {
	background: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 30px;
}

.section-title {
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 15px;
}

.section-title h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--secondary-color);
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background: var(--primary-color);
}

.accordion-item {
	border: none;
	border-bottom: 1px solid #eee;
	margin-bottom: 15px;
}

.accordion-button {
	background: none;
	font-weight: 600;
	color: var(--secondary-color);
	padding: 15px 0;
}

.accordion-button:not(.collapsed) {
	background: none;
	color: var(--primary-color);
	box-shadow: none;
}

.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6900'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
	padding: 0 0 20px 0;
	color: #666;
}

/* 咨询表单 */
.consultation-form {
	background: var(--light-bg);
	border-radius: 12px;
	padding: 40px;
	margin-top: 50px;
}

.form-title {
	text-align: center;
	margin-bottom: 30px;
}

.form-title h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 15px;
}

.form-title p {
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.form-control,
.form-select {
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-bottom: 20px;
	transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.2);
}

.btn-primary {
	background: var(--primary-color);
	border: none;
	padding: 12px 30px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-primary:hover {
	background: #e05e00;
	transform: translateY(-2px);
}

/* 添加模态框自定义样式 */
.modal-content {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.modal-header {
	background: linear-gradient(to right, #FF6900, #FF8C00);
	color: white;
	padding: 20px 30px;
	border-bottom: none;
}

.modal-title {
	font-weight: 700;
	font-size: 1.5rem;
}

.modal-body {
	padding: 30px;
}

.modal-footer {
	background-color: #f8f9fa;
	border-top: 1px solid #eee;
	padding: 20px 30px;
}

.consultation-btn {
	background: linear-gradient(to right, #FF6900, #FF8C00);
	border: none;
	padding: 12px 30px;
	font-weight: 600;
	transition: all 0.3s;
	border-radius: 8px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	width: 100%;
}

.consultation-btn:hover {
	background: linear-gradient(to right, #e05e00, #e07a00);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 105, 0, 0.3);
}

.consultation-btn i {
	margin-right: 10px;
	font-size: 1.2rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
	.page-header {
		padding: 80px 0;
	}

	.page-header h1 {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.page-header {
		padding: 60px 0;
	}

	.page-header h1 {
		font-size: 2rem;
	}

	.lawyer-name {
		font-size: 1.5rem;
	}
}

@media (max-width: 576px) {
	.page-header h1 {
		font-size: 1.8rem;
	}

	.page-header p {
		font-size: 1rem;
	}
}