/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 头部导航 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo 样式 */
.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a4a;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: #c9a227;
    background: rgba(201, 162, 39, 0.1);
}

/* Hero 区域 */
.hero {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #1a2a4a 0%, #2a3a5a 50%, #3a4a6a 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://imgoss.techfx88.com/www_img/www_upload/default17371801006781.png') center/cover no-repeat;
    opacity: 0.1;
}

.hero-content {
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1,
.hero .hero-title {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.hero .hero-lead {
    font-size: 17px;
    line-height: 1.85;
    margin: 0 auto 36px;
    max-width: 920px;
    opacity: 0.92;
    text-align: justify;
    text-justify: inter-ideograph;
}

.hero-essence {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 28px 36px;
    margin-top: 28px;
    padding-top: 0;
}

.hero-essence-item {
    flex: 1 1 220px;
    max-width: 360px;
    padding: 8px 28px 0;
    text-align: center;
}

@media (min-width: 900px) {
    .hero-essence {
        column-gap: 0;
        row-gap: 28px;
    }

    .hero-essence-item {
        padding-left: 36px;
        padding-right: 36px;
    }

    .hero-essence-item + .hero-essence-item {
        border-left: 1px solid rgba(201, 162, 39, 0.48);
        padding-left: 44px;
    }
}

@media (max-width: 899px) {
    .hero-essence {
        flex-direction: column;
        align-items: center;
        gap: 26px;
    }

    .hero-essence-item {
        max-width: 520px;
        width: 100%;
        padding: 0 8px;
    }
}

.hero-essence-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #d4b84a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(201, 162, 39, 0.55);
}

.hero-essence-text {
    font-size: 19px;
    line-height: 1.75;
    margin: 0;
    opacity: 0.94;
}

.hero p:not(.hero-lead):not(.hero-essence-text) {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.8;
}

/* 通用区块样式 */
section {
    padding: 80px 40px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    font-size: 36px;
    color: #1a2a4a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

/* 会员体系 */
.member-system {
    background: #f8f9fa;
}

.member-levels {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
    gap: clamp(8px, 1.4vw, 20px);
    align-items: stretch;
}

.level-item {
    background: #fff;
    padding: clamp(14px, 2.2vw, 30px) clamp(6px, 1vw, 16px);
    border-radius: 12px;
    min-width: 0;
    text-align: center;
    border: 2px solid #e0e4e8;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.level-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.level-icon {
    width: clamp(40px, 7vw, 60px);
    height: clamp(40px, 7vw, 60px);
    margin: 0 auto clamp(8px, 1.5vw, 15px);
}

.level-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.level-item.level-register {
    border-color: #8bc34a;
}

.level-item.level-register:hover {
    border-color: #689f38;
}

.level-item.level-open {
    border-color: #4caf50;
}

.level-item.level-open:hover {
    border-color: #388e3c;
}

.level-item.level-v1 {
    border-color: #ffc107;
    background: linear-gradient(to bottom, #fffef0, #fff);
}

.level-item.level-v1:hover {
    border-color: #ffb300;
}

.level-item.level-v2 {
    border-color: #9e9e9e;
    background: linear-gradient(to bottom, #f5f5f5, #fff);
}

.level-item.level-v2:hover {
    border-color: #757575;
}

.level-item.level-v3 {
    border-color: #00bcd4;
    background: linear-gradient(to bottom, #e0f7fa, #fff);
}

.level-item.level-v3:hover {
    border-color: #0097a7;
}

.level-item.level-v4 {
    border-color: #1a1a2e;
    background: linear-gradient(to bottom, #f0f0f5, #fff);
}

.level-item.level-v4:hover {
    border-color: #0d0d1a;
}

.level-name {
    display: block;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: clamp(6px, 1vw, 10px);
    font-size: clamp(12px, 1.55vw, 18px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.level-desc {
    display: block;
    font-size: clamp(10px, 1.15vw, 13px);
    color: #666;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 权益表格 */
.wentai-system {
    background: #fff;
}

.benefits-table-wrapper {
    display: flex;
    gap: 0;
}

.benefits-table {
    display: grid;
    grid-template-columns: minmax(130px, 1fr) repeat(4, minmax(72px, 1fr));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e4e8;
    width: 100%;
    box-sizing: border-box;
}

.benefits-table > .benefits-header,
.benefits-table > .benefits-row {
    display: contents;
}

.benefits-cell {
    box-sizing: border-box;
    min-width: 0;
    padding: 15px 10px;
    text-align: center;
    border-right: 1px solid #e0e4e8;
    border-bottom: 1px solid #e0e4e8;
    font-size: 14px;
}

.benefits-cell:last-child {
    border-right: none;
}

.header-cell {
    background: #f5f5f5;
    font-weight: 600;
    color: #1a2a4a;
}

.header-cell.gold {
    background: linear-gradient(to bottom, #fff8e1, #ffecb3);
    color: #f57f17;
}

.header-cell.platinum {
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
    color: #616161;
}

.header-cell.diamond {
    background: linear-gradient(to bottom, #e0f7fa, #b2ebf2);
    color: #00838f;
}

.header-cell.black-diamond {
    background: linear-gradient(to bottom, #1a1a2e, #2a2a3e);
    color: #fff;
}

.name-cell {
    background: #fafafa;
    font-weight: 500;
    text-align: left;
    padding-left: 20px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.benefits-row:nth-child(odd) .benefits-cell:not(.header-cell):not(.name-cell) {
    background: #f9f9f9;
}

.benefits-cell.check {
    color: #4caf50;
    font-weight: 700;
}

/* 权益名称和描述样式 */
.benefit-name {
    display: block;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 8px;
}

.benefit-desc {
    display: block;
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

/* 权益徽章样式 */
.benefits-cell.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.35;
    border-radius: 0;
    padding: 10px 8px;
    margin: 0;
    max-width: 100%;
    text-align: center;
}

.black-diamond-badge {
    background: linear-gradient(to bottom, #1a1a2e, #2a2a3e);
    color: #fff !important;
}

.diamond-badge {
    background: linear-gradient(to bottom, #e0f7fa, #b2ebf2);
    color: #00838f !important;
}

.platinum-badge {
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
    color: #616161 !important;
}

.gold-badge {
    background: linear-gradient(to bottom, #fff8e1, #ffecb3);
    color: #f57f17 !important;
}

/* 其他权益区域 */
.other-benefits {
    margin-top: 40px;
}

.other-benefits-title {
    text-align: center;
    color: #1a2a4a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.other-benefits-table {
    display: grid;
    grid-template-columns: minmax(100px, 1.15fr) repeat(6, minmax(72px, 1fr));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e4e8;
    width: 100%;
    box-sizing: border-box;
}

.other-benefits-table > .benefits-header,
.other-benefits-table > .benefits-row {
    display: contents;
}

.other-benefits-table .benefits-cell {
    font-size: 12px;
}

.other-benefits-table .benefits-cell:first-child {
    font-weight: 600;
}

/* 权益注释 */
.benefits-note {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefits-note p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

/* 课程体系 */
.courses {
    background: #f8f9fa;
}

.courses-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-level {
    padding: 40px 30px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e0e4e8;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.course-level:hover {
    transform: translateY(-5px);
}

.course-img {
    width: clamp(76px, 14vw, 104px);
    height: clamp(76px, 14vw, 104px);
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(165deg, #fff 0%, #eef2f7 100%);
    border: 1px solid #e4e9ef;
    box-shadow: 0 8px 22px rgba(26, 42, 74, 0.07);
}

.course-img--beginner {
    border-color: rgba(76, 175, 80, 0.25);
}

.course-img--intermediate {
    border-color: rgba(30, 136, 229, 0.22);
}

.course-img--advanced {
    border-color: rgba(201, 162, 39, 0.35);
}

.course-img svg {
    width: 58%;
    height: 58%;
    display: block;
}

.course-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.course-level h3 {
    color: #1a2a4a;
    margin-bottom: 15px;
    font-size: 20px;
}

.course-level p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* 服务体系 */
.services {
    background: #fff;
}

.services-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-column {
    padding: 40px 30px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e0e4e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-column-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.service-column-title img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-column-title h3 {
    color: #1a2a4a;
    font-size: 20px;
    font-weight: 600;
}

.service-column-list {
    list-style: none;
    padding: 0;
}

.service-column-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e4e8;
    color: #555;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.service-column-list li:before {
    content: "•";
    color: #c9a227;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-column-list li:last-child {
    border-bottom: none;
}

/* 旧样式保留兼容 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e0e4e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    color: #1a2a4a;
    margin-bottom: 20px;
    font-size: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e4e8;
    color: #555;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.service-list li:before {
    content: "•";
    color: #c9a227;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-card p {
    color: #666;
    font-size: 15px;
}

/* 服务形式 */
.service-forms {
    background: #f8f9fa;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.form-item {
    padding: 50px 30px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e0e4e8;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.form-item:hover {
    transform: translateY(-5px);
}

.form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.form-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.form-item h3 {
    color: #1a2a4a;
    margin-bottom: 15px;
    font-size: 20px;
}

.form-item p {
    color: #666;
    font-size: 15px;
}

/* 服务理念 */
.philosophy {
    background: linear-gradient(135deg, #1a2a4a 0%, #2a3a5a 100%);
    color: #fff;
    padding: 100px 40px;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy h2 {
    color: #fff;
}

.philosophy-subtitle {
    color: #c9a227;
    font-size: 28px;
    margin-top: 20px;
}

.philosophy-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-top: 15px;
}

.philosophy-dimensions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.dimension {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dimension-icon {
    width: clamp(48px, 10vw, 60px);
    height: clamp(48px, 10vw, 60px);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dimension-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.22));
}

.dimension-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.dimension h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #c9a227;
}

.dimension p {
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.6;
}

.philosophy-diagram {
    text-align: center;
    margin-top: 40px;
}

.diagram-img {
    max-width: 400px;
    width: 100%;
}

/* 团队介绍 */
.team {
    background: #fff;
}

.team-types {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-type {
    padding: 50px 40px;
    border-radius: 12px;
    background: #f8f9fa;
    min-width: 400px;
    text-align: center;
    border: 1px solid #e0e4e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.team-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-type h3 {
    color: #1a2a4a;
    margin-bottom: 15px;
    font-size: 22px;
}

.team-type p {
    color: #666;
    font-size: 15px;
}

/* 服务顾问列表 - 复刻原页面样式 */
.team-intro {
    text-align: center;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.8;
}

.consultants-section {
    margin-top: 60px;
}

.consultants-section h3 {
    text-align: center;
    color: #1a2a4a;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.consultants-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px 10px;
}

.consultant-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8e8e8;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.consultant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border-color: #c9a227;
}

.consultant-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 2px solid #e8e8e8;
}

.consultant-card:hover .consultant-avatar {
    border-color: #c9a227;
}

.consultant-name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 14px;
    text-align: center;
}

.consultant-title {
    display: block;
    color: #c9a227;
    font-size: 12px;
    margin-bottom: 8px;
    text-align: center;
}

.consultant-whatsapp {
    display: block;
    color: #25d366;
    font-size: 11px;
    text-align: center;
}

/* 投资大咖 */
.experts {
    background: #f8f9fa;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.expert-card {
    background: #fff;
    padding: 0;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e6eaef;
    border-left: 4px solid #c9a227;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(26, 42, 74, 0.1);
}

.expert-card-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 28px 20px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
    border-bottom: 1px solid #eef1f5;
}

.expert-index {
    flex-shrink: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(201, 162, 39, 0.35);
    font-variant-numeric: tabular-nums;
    padding-top: 2px;
}

.expert-card-titles {
    min-width: 0;
}

.expert-card h3 {
    color: #1a2a4a;
    margin: 0 0 8px;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.expert-title {
    color: #9a7b1a;
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
}

.expert-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
    padding: 20px 28px 28px;
    margin: 0;
    flex-grow: 1;
}

.expert-desc li {
    list-style: none;
    padding: 10px 0 10px 1.1rem;
    position: relative;
    border-bottom: 1px solid #f0f2f5;
}

.expert-desc li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.expert-desc li:first-child {
    padding-top: 0;
}

.expert-desc li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.15em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c9a227;
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
}

.expert-youtube {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e4e8;
}

.expert-youtube p {
    color: #666;
    font-size: 13px;
    margin-bottom: 5px;
}

.subscribe-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ff0000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.2s;
}

.subscribe-btn:hover {
    background: #cc0000;
}

/* 页脚 */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    margin-bottom: 40px;
}

.footer-contact {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 180px;
}

.contact-item h4 {
    color: #c9a227;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hotline {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-item a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #c9a227;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.whatsapp-link img {
    width: 20px;
    height: 20px;
}

.whatsapp-link span {
    color: #25d366;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: #888;
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-risk-section {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 20px;
}

.footer-risk-section h4 {
    color: #c9a227;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 15px;
    font-weight: 600;
}

.footer-risk-section p {
    color: #888;
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switch span {
    color: #888;
    font-size: 14px;
}

.language-switch img {
    width: 20px;
    height: 20px;
}

.language-switch a {
    color: #c9a227;
    text-decoration: none;
    font-size: 14px;
}

.copyright {
    color: #888;
    font-size: 14px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .courses-levels,
    .forms-grid,
    .experts-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-dimensions {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-types {
        flex-direction: column;
    }

    .team-type {
        min-width: 100%;
    }

    .benefits-table {
        overflow-x: auto;
        min-width: 720px;
    }

    .other-benefits-table {
        overflow-x: auto;
        min-width: 640px;
    }

    .consultants-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .consultants-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 13px;
        padding: 8px 10px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1,
    .hero .hero-title {
        font-size: 32px;
        letter-spacing: 0.04em;
    }

    .hero .hero-lead {
        font-size: 15px;
        text-align: left;
    }

    .hero-essence-label {
        font-size: 13px;
    }

    .hero-essence-text {
        font-size: 17px;
    }

    .hero p:not(.hero-lead):not(.hero-essence-text) {
        font-size: 16px;
    }

    section {
        padding: 60px 20px;
    }

    section h2 {
        font-size: 28px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        text-align: left;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .consultants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .consultant-card {
        padding: 15px 10px;
    }

    .consultant-avatar {
        width: 50px;
        height: 50px;
    }

    .consultant-name {
        font-size: 12px;
    }

    .team-intro {
        font-size: 14px;
    }
}