﻿/* 全局样式 */
:root {
    --primary-color: #A62A83;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --light-purple: #E6E6FA;
    --medium-purple: #D8BFD8;
    --accent-purple: #9370DB;
}

/* 锚点跳转样式 */
html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 70px; /* 为固定导航栏留出空间 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* 全局链接样式 */
a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* 导航栏样式 */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand img {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* 大屏幕设备 */
@media (min-width: 1200px) {
    .navbar-brand img {
        height: 36px;
    }
}

/* 中等屏幕设备 */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-brand img {
        height: 34px;
    }
    
    .navbar-brand .slogan {
        font-size: 0.85rem;
    }
}

/* 小屏幕设备 */
@media (max-width: 767px) {
    .navbar-brand img {
        height: 28px;
    }
}

/* 超小屏幕设备 */
@media (max-width: 575px) {
    .navbar-brand img {
        height: 24px;
    }
    
    .navbar-brand .slogan {
        font-size: 0.75rem;
    }
}

.navbar-brand .slogan {
    display: inline-block;
    font-family: '黑体';
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-color) !important;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
    text-decoration: none !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

/* 确保导航链接在所有状态下都不显示下划线 */
.navbar-nav .nav-link,
.navbar-nav .nav-link:link,
.navbar-nav .nav-link:visited,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:focus {
    text-decoration: none !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* 悬浮按钮 */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: bounce 2s infinite;
    transform-origin: center;
}

.floating-btn .btn {
    border-radius: 25px;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(166, 42, 131, 0.3);
    transition: var(--transition);
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    line-height: 1;
}

.floating-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(166, 42, 131, 0.4);
    background: var(--accent-purple);
    color: white;
    text-decoration: none;
}

.floating-btn .btn:focus,
.floating-btn .btn:active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(166, 42, 131, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 响应式调整悬浮按钮 */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* 主横幅区域 */
.hero-section {
    background: linear-gradient(135deg, rgba(166, 42, 131, 0.9) 0%, rgba(138, 31, 107, 0.9) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 主页横幅背景 */
.hero-section.home-hero {
    background-image: url('/assets/images/home-1.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 按钮样式 */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #8a1f6b;
    border-color: #8a1f6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 42, 131, 0.4);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline-primary {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(147, 112, 219, 0.4);
}

/* 章节标题 */
.section-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* 服务卡片 */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--light-purple);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #8a1f6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

/* 品牌理念区域 */
.brand-philosophy {
    background: linear-gradient(135deg, #f8f0f8 0%, #f0e8f8 50%, #e8e0f8 100%);
    position: relative;
    overflow: hidden;
}

.brand-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23A62A83" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23A62A83" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23A62A83" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23A62A83" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.philosophy-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.philosophy-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.philosophy-list {
    list-style: none;
    padding: 0;
}

.philosophy-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.philosophy-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.philosophy-image {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(166, 42, 131, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 25px;
    z-index: -1;
}

.philosophy-image img {
    box-shadow: 0 15px 40px rgba(166, 42, 131, 0.15);
    border-radius: 20px;
    transition: var(--transition);
    border: 4px solid rgba(255, 255, 255, 0.8);
    filter: brightness(1.05) contrast(1.1);
}

.philosophy-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(166, 42, 131, 0.25);
    border-color: rgba(166, 42, 131, 0.3);
}

/* 页脚 */
.footer {
    background: var(--primary-color);
    color: var(--white);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

/* 页脚响应式优化 */
.footer-content {
    line-height: 1.6;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-qr {
    max-width: 160px;
    margin: 0 auto;
}

.footer-qr div {
    white-space: nowrap;
}

.footer-qr img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.footer-qr img:hover {
    transform: scale(1.05);
}

/* 响应式footer设计 */
@media (max-width: 991px) {
    .footer .row {
        text-align: center;
    }
    
    .footer-content {
        margin-bottom: 2rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem !important;
    }
    
    .footer-qr {
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem !important;
        align-items: center;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    .footer-qr {
        max-width: 140px;
        margin-top: 1.5rem;
    }
    
    .footer-qr img {
        max-width: 90px;
    }
    
    .footer-qr div {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-qr {
        max-width: 120px;
        margin-top: 1rem;
    }
    
    .footer-qr img {
        max-width: 75px;
    }
    
    .footer-qr div {
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar-brand {
        gap: 8px;
    }
    
    .navbar-brand .slogan {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .philosophy-content h2 {
        font-size: 2rem;
    }
    
    .philosophy-image {
        padding: 15px;
        margin-top: 2rem;
        justify-content: center;
        align-items: center;
    }
    
    .philosophy-image img {
        border-width: 3px;
        border-radius: 15px;
    }
    
    .floating-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-section {
        height: 100vh;
    }
    
    .page-header {
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .consultation-section h2 {
        font-size: 1.8rem;
    }
    
    .consultation-section p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* 滚动动画 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 加载动画 */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* 页面标题样式 */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8a1f6b 100%);
    color: var(--white);
    padding-top: 140px;
    padding-bottom: 60px;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 关于我们页面样式 */
.brand-story h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.brand-story h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.feature-item i {
    color: var(--primary-color);
}

/* 团队卡片样式 */
.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-avatar img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
}

.team-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-certificates {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* 团队介绍部分样式 */
.team-section {
    background: var(--secondary-color);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.team-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.team-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.team-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

.team-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-features li:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.team-features li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 2px;
    font-size: 1.1rem;
}

.team-features li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.team-stats {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-purple);
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 1rem;
    margin: 0;
    color: var(--light-text);
    font-weight: 500;
}

.team-image {
    position: relative;
}

.team-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-image p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--light-text);
    margin-top: 1.5rem;
    text-align: center;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .team-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }
    
    .team-stats {
        margin-top: 2rem;
    }
    
    .stat-item h4 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .team-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .team-stats {
        padding: 2rem;
    }
    
    .stat-item h4 {
        font-size: 2rem;
    }
    
    .team-features li {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .team-content p {
        margin-bottom: 2rem;
    }
    
    .team-features {
        margin-bottom: 2rem;
    }
}

/* 荣誉资质样式 */
.honor-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.honor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.honor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #8a1f6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.honor-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* 发展历程样式 */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 55%;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-date {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* 服务详情页面样式 */
.service-detail {
    position: relative;
}

.service-row {
    min-height: 600px;
    align-items: stretch !important;
}

.service-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 0;
}

.content-top {
    flex-shrink: 0;
    margin-bottom: 2rem;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2.2rem;
}

.service-content h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-process {
    margin-top: auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.service-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #8a1f6b, var(--accent-color));
}

.service-process h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.service-process h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-process ol {
    padding-left: 0;
    list-style: none;
    counter-reset: step-counter;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-process li {
    margin-bottom: 0.8rem;
    color: var(--dark-text);
    font-weight: 500;
    line-height: 1.6;
    padding: 0.8rem 1.2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    counter-increment: step-counter;
    border-left: 4px solid transparent;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 50px;
}

.service-process li::before {
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), #8a1f6b);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(138, 31, 107, 0.3);
}

.service-process li:hover {
    transform: translateX(8px);
    border-left-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.service-process li:last-child {
    margin-bottom: 0;
}

.service-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    object-fit: cover;
    width: 100%;
    height: 500px;
}

.service-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* 响应式优化 */
@media (max-width: 1200px) {
    .service-row {
        min-height: 550px;
    }
    
    .service-process {
        min-height: 280px;
    }
    
    .service-image img {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .service-row {
        min-height: auto;
    }
    
    .service-content {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    
    .service-process {
        min-height: auto;
        margin-top: 2rem;
    }
    
    .service-image {
        padding: 1rem 0;
    }
    
    .service-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .service-row {
        min-height: auto;
    }
    
    .service-content {
        margin-bottom: 2rem;
        padding: 0.5rem 0;
    }
    
    .content-top {
        margin-bottom: 1.5rem;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .service-process {
        padding: 1.5rem;
        margin-top: 1.5rem;
        min-height: auto;
    }
    
    .service-process h4 {
        font-size: 1.2rem;
    }
    
    .service-process li {
        padding: 0.8rem 1.2rem;
        margin-bottom: 0.8rem;
        min-height: 45px;
    }
    
    .service-process li::before {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
        left: -13px;
    }
    
    .service-image {
        padding: 0.5rem 0;
    }
    
    .service-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .service-content {
        padding: 0.3rem 0;
    }
    
    .content-top {
        margin-bottom: 1rem;
    }
    
    .service-process {
        padding: 1.2rem;
    }
    
    .service-process li {
        padding: 0.7rem 1rem;
        margin-bottom: 0.7rem;
        min-height: 40px;
        font-size: 0.9rem;
    }
    
    .service-process li::before {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        left: -12px;
    }
    
    .service-image img {
        height: 250px;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .service-process {
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .service-process li {
        background: #2a2a2a;
        color: #e0e0e0;
    }
    
    .service-process li:hover {
        background: linear-gradient(135deg, #2a2a2a 0%, #333333 100%);
    }
    
    .feature-item {
        background: #2a2a2a;
        color: #e0e0e0;
    }
}

/* 服务优势卡片 */
.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #8a1f6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.advantage-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* 案例展示页面样式 */
.case-filter {
    background: var(--light);
}

.filter-buttons .btn {
    margin: 0 0.5rem;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
}

.case-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-before-after {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem;
}

.before-image,
.after-image {
    position: relative;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.case-content {
    padding: 1.25rem;
}

.case-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* 新增的案例内容样式 */
.case-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.case-section {
    margin-bottom: 0.75rem;
}

.case-section:last-child {
    margin-bottom: 0;
}

.case-section .section-subheader {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 0.4rem;
    margin-top: 0;
}

.case-text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.case-list {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
}

.case-list li {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    color: var(--light-text);
}

.case-list li:last-child {
    margin-bottom: 0;
}

.case-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.case-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-details {
    margin-bottom: 1rem;
}

.case-details .badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    color: var(--light-text);
    font-size: 0.9rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* 客户评价卡片 */
.feedback-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
}

.feedback-content {
    margin-bottom: 1.5rem;
}

.feedback-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feedback-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.author-info span {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* 问题解决方案卡片 */
.problem-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #8a1f6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.problem-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-card p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.solution {
    background: var(--light-purple);
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* 学院介绍部分 */
.academy-intro {
    background: linear-gradient(to bottom, var(--light-purple) 0%, var(--white) 100%);
    padding: 4rem 0;
}

.academy-intro .intro-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.academy-intro .intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-purple);
}

.academy-intro .intro-content h4 {
    color: var(--accent-purple);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.academy-intro .intro-content p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.academy-intro .intro-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.academy-intro .intro-image img:hover {
    transform: scale(1.02);
}

/* 为什么选择我们部分 */
.why-choose-us {
    background: var(--secondary-color);
    padding: 4rem 0;
}

.why-choose-us .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.why-choose-us .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-purple);
    margin: 1rem auto 0;
}

.why-choose-us .choose-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-choose-us .choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.why-choose-us .choose-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: rgba(166,42,131,0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.why-choose-us .choose-card h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-choose-us .choose-card p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* 学习后获取部分 */
.what-you-get {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-purple) 100%);
    padding: 4rem 0;
}

.what-you-get .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.what-you-get .section-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.what-you-get .get-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.what-you-get .get-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.what-you-get .get-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.what-you-get .get-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0;
}

.what-you-get .get-icon {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-left: 1rem;
    background: rgba(147,112,219,0.1);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}

.what-you-get .get-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.what-you-get .get-list {
    list-style: none;
    padding: 0;
}

.what-you-get .get-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
}

.what-you-get .get-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-purple);
    position: absolute;
    left: 0;
    top: 0;
}

/* 课程卡片样式 */
.course-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.course-card.featured {
    border: 2px solid var(--primary-color);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-header {
    background: linear-gradient(135deg, var(--primary-color), #8a1f6b);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.course-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.course-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
}

.course-content {
    padding: 2rem;
}

.course-content h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.course-features i {
    color: var(--primary-color);
}

.course-duration {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* 讲师卡片样式 */
.instructor-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.instructor-avatar {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instructor-card:hover .instructor-avatar img {
    transform: scale(1.1);
}

.instructor-info {
    padding: 1.5rem;
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.instructor-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.instructor-certificates {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* 学员故事卡片 */
.story-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.story-quote {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-author img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.author-info span {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
}

.current-status {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* 培训成果统计 */
.result-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.result-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* 预约咨询区域样式 */
.consultation-section {
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.9) 0%, rgba(166, 42, 131, 0.9) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 服务页面预约咨询背景 */
.consultation-section.services-consultation {
    background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1200&h=600&fit=crop');
}

/* 案例展示页面预约咨询背景 */
.consultation-section.cases-consultation {
    background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=1200&h=600&fit=crop');
}

/* 客户见证页面预约咨询背景 */
.consultation-section.testimonials-consultation {
    background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1200&h=600&fit=crop');
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.consultation-section .container {
    position: relative;
    z-index: 2;
}

.consultation-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.consultation-section p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.consultation-section .btn-light {
    background: var(--white);
    border-color: var(--white);
    color: var(--accent-purple);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
}

.consultation-section .btn-light:hover {
    background: var(--light-purple);
    border-color: var(--light-purple);
    color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* 联系我们页面样式 */
.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #8a1f6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

/* 联系表单样式 */
.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid var(--light-purple);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(166, 42, 131, 0.25);
}

/* 微信公众号样式 */
.wechat-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.wechat-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.wechat-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.wechat-features i {
    color: var(--primary-color);
}

.wechat-account {
    background: var(--light);
    padding: 1rem;
    border-radius: 10px;
    color: var(--text-color);
}

.wechat-qr img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* 服务流程样式 */
.process-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #8a1f6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.process-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* 常见问题样式 */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: var(--white);
    border: none;
    color: var(--text-color);
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--white);
    padding: 1.5rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* 客户满意度统计 */
.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #8a1f6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* 视频见证样式 */
.video-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(166, 42, 131, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.video-play-btn:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 1.5rem;
}

.video-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-content p {
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video-duration {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* 客户评价样式 */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--accent-purple);
    margin-right: 0.25rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.author-info span {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
}

.service-type {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* 自定义徽章颜色 - 与主色调相近 */
.badge.bg-secondary {
    background-color: var(--accent-purple) !important;
    color: var(--white);
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
    color: var(--white);
}

.badge.bg-success {
    background-color: var(--medium-purple) !important;
    color: var(--text-color);
}

.badge.bg-warning {
    background-color: var(--medium-purple) !important;
    color: var(--white);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .consultation-section h2 {
        font-size: 2rem;
    }
    
    .consultation-section p {
        font-size: 1.1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        left: 60px !important;
    }
    
    .timeline-content::before {
        left: -50px !important;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .service-content h2 {
        font-size: 2rem;
    }
    
    .course-header {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 2rem;
    }
}

/* 案例描述子标题样式 */
.section-subheader {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-purple);
    padding-bottom: 0.5rem;
} 

/* 学院页面重新设计样式 - 统一色调版本 */

/* 学院页面头部 */
.academy-header {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--accent-purple) 50%, 
        var(--medium-purple) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.academy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.academy-header .container {
    position: relative;
    z-index: 2;
}

.academy-header .highlight {
    color: var(--light-purple);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: var(--light-purple);
}

.stat-item span {
    font-size: 0.9rem;
    display: block;
}

.floating-image {
    animation: float 3s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(166, 42, 131, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-btn {
    border-radius: 50px;
    padding: 12px 30px;
    animation: pulse 2s infinite;
    background: var(--light-purple);
    border: none;
    color: var(--primary-color);
    font-weight: 600;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--light-purple);
    border-bottom: 2px solid var(--light-purple);
    transform: rotate(45deg);
    animation: arrow-bounce 2s infinite;
}

@keyframes arrow-bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* 章节标识 */
.section-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* 为什么学习部分 */
.why-learn-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--light-purple) 0%, white 100%);
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(166, 42, 131, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(166, 42, 131, 0.2);
}

.benefit-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.earning-highlight {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-purple);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: rgba(166,42,131,0.05);
    border-radius: 50%;
}

/* 为什么选择我们部分 */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
    color: white;
}

.why-choose-section .section-badge {
    background: rgba(255,255,255,0.2);
}

.why-choose-section .section-title-modern {
    color: white;
}

.why-choose-section .section-subtitle-modern {
    color: rgba(255,255,255,0.8);
}

.advantage-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.advantage-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.advantage-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-purple);
    font-weight: bold;
}

.course-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.course-type {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.course-type strong {
    color: var(--light-purple);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.support-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.support-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-purple);
}

.support-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.certificate-badges {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.certificate-badge {
    background: var(--light-purple);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* 学习收获部分 */
.what-you-get-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white 0%, var(--light-purple) 100%);
}

.what-you-get-section .section-badge {
    background: var(--primary-color);
    color: white;
}

.outcome-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(166, 42, 131, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.outcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(166, 42, 131, 0.15);
}

.outcome-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.outcome-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.outcome-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.outcome-header h3 {
    flex: 1;
    margin: 0 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.outcome-icon {
    width: 50px;
    height: 50px;
    background: rgba(166,42,131,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.skill-item {
    background: var(--light-purple);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.skill-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-value {
    color: var(--primary-color);
    font-weight: bold;
}

.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-purple));
    transition: width 2s ease;
}

.career-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.career-title {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
}

.career-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.time-saved {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-purple), var(--medium-purple));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.time-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.time-unit {
    font-size: 1rem;
    opacity: 0.9;
}

.time-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.outcome-list {
    list-style: none;
    padding: 0;
}

.outcome-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.outcome-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: bold;
}

/* CTA部分 */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
}

.cta-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.cta-feature i {
    color: var(--light-purple);
    margin-right: 0.5rem;
}

.cta-btn {
    background: var(--light-purple);
    border: none;
    color: var(--primary-color);
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.cta-phone {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .outcome-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* 学院页面重新设计样式 - 优化布局版本 */

/* 第一部分 - 综合英雄区和为什么学习 */
.first-section {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--accent-purple) 30%, 
        var(--light-purple) 70%, 
        white 100%);
    padding: 6rem 0 5rem 0;
    position: relative;
    overflow: hidden;
}

.first-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.03;
    z-index: 1;
}

.first-section .container {
    position: relative;
    z-index: 2;
}

/* 英雄区内容 */
.hero-content {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-highlight {
    color: var(--light-purple);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.main-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.stats-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stats-showcase .stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.stats-showcase .stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    color: var(--light-purple);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.stats-showcase .stat-item span {
    font-size: 1rem;
    display: block;
    color: rgba(255,255,255,0.9);
}

/* 章节内容过渡 */
.section-badge {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* 优化卡片布局 */
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(166, 42, 131, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(166, 42, 131, 0.05);
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(166, 42, 131, 0.2);
    border-color: rgba(166, 42, 131, 0.1);
}

.benefit-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
    box-shadow: 0 8px 25px rgba(166, 42, 131, 0.3);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.earning-highlight {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-purple);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.3);
}

.card-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: rgba(166,42,131,0.03);
    border-radius: 50%;
}

/* 为什么选择我们部分 */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
    color: white;
}

.why-choose-section .section-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

.why-choose-section .section-title-modern {
    color: white;
}

.why-choose-section .section-subtitle-modern {
    color: rgba(255,255,255,0.8);
}

.advantage-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.advantage-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.advantage-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-purple);
    font-weight: bold;
}

.course-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.course-type {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.course-type strong {
    color: var(--light-purple);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.support-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.support-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-purple);
}

.support-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.certificate-badges {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.certificate-badge {
    background: var(--light-purple);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* 学习收获部分 */
.what-you-get-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white 0%, var(--light-purple) 100%);
}

.what-you-get-section .section-badge {
    background: var(--primary-color);
    color: white;
}

.outcome-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(166, 42, 131, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.outcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(166, 42, 131, 0.15);
}

.outcome-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.outcome-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.outcome-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.outcome-header h3 {
    flex: 1;
    margin: 0 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.outcome-icon {
    width: 50px;
    height: 50px;
    background: rgba(166,42,131,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.skill-item {
    background: var(--light-purple);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.skill-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-value {
    color: var(--primary-color);
    font-weight: bold;
}

.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-purple));
    transition: width 2s ease;
}

.career-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.career-title {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
}

.career-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.time-saved {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-purple), var(--medium-purple));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.time-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.time-unit {
    font-size: 1rem;
    opacity: 0.9;
}

.time-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.outcome-list {
    list-style: none;
    padding: 0;
}

.outcome-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.outcome-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: bold;
}

/* CTA部分 */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
}

.cta-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.cta-feature i {
    color: var(--light-purple);
    margin-right: 0.5rem;
}

.cta-btn {
    background: var(--light-purple);
    border: none;
    color: var(--primary-color);
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.cta-phone {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .stats-showcase {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stats-showcase .stat-item {
        width: 200px;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .outcome-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
} 