/* 颜色系统 */
:root {
    --blue-900: #1a365d; /* 深蓝 - 主要背景 */
    --blue-800: #2c5282; /* 主蓝 - 主要元素 */
    --blue-700: #2b6cb0; /* 次蓝 - 交互元素 */
    --blue-600: #3182ce; /* 亮蓝 - 强调元素 */
    --blue-500: #4299e1; /* 浅蓝 - 次要元素 */
    --blue-100: #ebf8ff; /* 最浅蓝 - 背景色 */

    --red-900: #56132a; /* 深蓝 - 主要背景 */
    --red-800: #741938; /* 深蓝 - 主要背景 */
    --red-700: #c61951; /* 深蓝 - 主要背景 */
    --red-600: #f64662; /* 深蓝 - 主要背景 */
    --red-500: #fd94b4; /* 深蓝 - 主要背景 */
    --red-100: #f6c7c7; /* 深蓝 - 主要背景 */

    --gray-900: #1a202c; /* 深灰 - 主要文字 */
    --gray-700: #4a5568; /* 中灰 - 次要文字 */
    --gray-500: #718096; /* 浅灰 - 辅助文字 */
    --gray-200: #e2e8f0; /* 最浅灰 - 分割线 */

    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
}

/* 基础链接样式 */
a {
    text-decoration: none;
}

/* 基础列表样式 */
ul, ol {
    list-style: none;
}

/* 基础图片样式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 容器 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* 响应式导航栏 */
@media (max-width: 768px) {
    .navbar {
        height: 70px; /* 移动端稍微降低高度 */
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 20px;
    }
    .logo img{
        height:50px;
    }
        .logo i {
            font-size: 24px;
        }
}

/* 按钮 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--blue-600);
    color: var(--white);
    border: none;
}

    .btn-primary:hover {
        background-color: var(--blue-700);
    }

.btn-outline {
    background-color: transparent;
    color: var(--blue-600);
    border: 2px solid var(--blue-600);
}

    .btn-outline:hover {
        background-color: var(--blue-600);
        color: var(--white);
    }

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* 卡片组件 */
.card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* 英雄区域 */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%);
    color: var(--white);
    text-align: center;
}

    .hero h1 {
        color: var(--white);
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.25rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }

/* 部分样式 */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-title h2 {
        color: var(--blue-800);
        margin-bottom: 1rem;
    }

    .section-title p {
        color: var(--gray-700);
        font-size: 1.1rem;
    }

/* 网格系统 */
.grid {
    display: grid;
    gap: 30px;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 60px 0;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

        .process-steps::before {
            display: none;
        }
}

/* 工具类 */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* 套餐选择样式优化 */


@media (max-width: 968px) {
    .package-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .package-options {
        grid-template-columns: 1fr;
    }
    .package-option {
        max-width: 400px;
        margin: 0;
    }
}
