/* 自定义样式 */

/* 全局样式 */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 导航栏样式 */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* 服务卡片悬停效果 */
.service-card:hover {
    transform: translateY(-5px);
}

/* 按钮动画 */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
}

/* 表单样式 */
form input,
form textarea {
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* 页脚样式 */
footer {
    background-color: #1E293B;
}

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

section {
    animation: fadeIn 0.8s ease-out;
}

/* 图标颜色 */
.icon-primary {
    color: #3B82F6;
}

.icon-secondary {
    color: #6366F1;
}