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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* 头部个人信息区域 */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.name {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

.title {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.organization {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.experience {
    font-size: 14px;
    opacity: 0.8;
}

.contact-info {
    position: absolute;
    top: 30px;
    right: 20px;
    text-align: right;
    font-size: 12px;
    opacity: 0.9;
}

.contact-info p {
    margin-bottom: 3px;
}

/* 座右铭区域 */
.motto {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
    padding: 15px;
    margin: -10px 20px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}

.motto p {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
}

/* 行动按钮 */
.action-buttons {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.btn-primary, .btn-secondary {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 导航菜单 */
.nav-menu {
    padding: 0 20px 20px;
}

.nav-item {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: bold;
    text-align: center;
}

/* 通用区域样式 */
.service-stats, .personal-intro, .honors, .privileges, .reviews, .team-intro {
    padding: 20px;
}

.service-stats h2, .personal-intro h2, .honors h2, .privileges h2, .reviews h2, .team-intro h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-left: 4px solid #667eea;
    padding-left: 10px;
}

/* 服务数据网格 */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    margin-bottom: 3px;
    opacity: 0.9;
}

.stat-unit {
    font-size: 12px;
    opacity: 0.7;
}

/* 个人介绍 */
.personal-intro p {
    line-height: 1.6;
    color: #666;
}

/* 荣誉网格 */
.honors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.honor-item {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(252, 182, 159, 0.3);
}

.honor-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.honor-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.honor-level {
    font-size: 12px;
    color: #666;
    background: rgba(255, 255, 255, 0.5);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

/* 服务特权 */
.privilege-item {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privilege-icon {
    font-size: 32px;
}

.privilege-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.privilege-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* 客户评价统计 */
.review-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.review-item {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-label {
    font-size: 14px;
    color: #666;
}

.review-value {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

/* 组织介绍 */
.team-intro p {
    line-height: 1.6;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 380px) {
    .container {
        max-width: 100%;
    }
    
    .stats-grid, .honors-grid, .review-stats {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeIn 0.6s ease-out;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}