/* 标题颜色和隐私政策同意框修复 */

/* 将所有网站中的标题字色都改为网站主题的绿色 */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

/* 页面标题区域中的标题保持白色 */
.page-title-section h1,
.page-title-section h2,
.page-title-section h3,
.page-title-section h4,
.page-title-section h5,
.page-title-section h6,
.page-title-section p {
    color: white;
}

/* 修复contact.html中的隐私政策同意框排版问题 */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
}