/* 泽枫电竞 - 未来科技朋克风格主样式 */

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

:root {
    /* 核心色彩系统 */
    --cyber-black: #0a0a0a;
    --cyber-dark: #111111;
    --cyber-gray: #1a1a1a;
    --cyber-light: #222222;
    
    /* 霓虹色系 */
    --neon-red: #ff003c;
    --neon-blue: #00f0ff;
    --neon-purple: #8a2be2;
    --neon-green: #00ff9d;
    --neon-yellow: #ffd700;
    
    /* 功能色 */
    --primary: var(--neon-red);
    --secondary: var(--neon-blue);
    --accent: var(--neon-purple);
    --success: var(--neon-green);
    --warning: var(--neon-yellow);
    
    /* 文字色 */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    
    /* 边框和阴影 */
    --border-color: rgba(0, 240, 255, 0.2);
    --border-glow: 0 0 10px rgba(0, 240, 255, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 0, 60, 0.3);
    
    /* 动画时间 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cyber-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

/* 扫描线效果 */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--neon-blue) 50%, 
        transparent 100%);
    z-index: 9999;
    animation: scan 3s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100vh; }
}

/* 顶部导航 */
.cyber-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
}

.cyber-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 自定义绘制的logo样式 */
.custom-logo {
    position: relative;
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--text-primary);
    overflow: hidden;
}

.logo-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--neon-blue);
}

.logo-corner.tl {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.logo-corner.tr {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

.logo-corner.bl {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}

.logo-corner.br {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.logo-border {
    position: absolute;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.logo-border.top {
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    animation: borderFlow 2s linear infinite;
}

.logo-border.right {
    right: 0;
    top: 20%;
    height: 60%;
    width: 2px;
    animation: borderFlow 2s linear infinite 0.5s;
}

.logo-border.bottom {
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    animation: borderFlow 2s linear infinite 1s;
}

.logo-border.left {
    left: 0;
    top: 20%;
    height: 60%;
    width: 2px;
    animation: borderFlow 2s linear infinite 1.5s;
}

@keyframes borderFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.logo-text {
    position: relative;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.char {
    font-family: 'Microsoft YaHei', 'SimHei', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--neon-red);
    transition: all 0.3s ease;
    position: relative;
}

.char:hover {
    text-shadow: 0 0 20px var(--neon-red), 0 0 30px var(--neon-red);
    transform: translateY(-2px);
}

/* 导航菜单 */
.cyber-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.cyber-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-normal);
    text-transform: uppercase;
}

.cyber-nav a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--neon-blue);
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
}

.cyber-nav a:hover::before {
    width: 100%;
}

.cyber-nav a.active {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.cyber-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

/* 搜索框 */
.cyber-search {
    display: flex;
    align-items: center;
    position: relative;
}

.cyber-search input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 15px;
    width: 200px;
    border-radius: 0;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.cyber-search input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: var(--border-glow);
    width: 250px;
}

.search-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--neon-blue);
    padding: 8px 15px;
    cursor: pointer;
    transition: var(--transition-normal);
    margin-left: 5px;
}

.search-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 10px var(--neon-blue);
}

/* 英雄区域 */
.cyber-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* 故障艺术标题 */
.cyber-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cyber-text {
    position: relative;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 打字机效果 */
.typewriter {
    margin-bottom: 30px;
}

.typing-text {
    font-size: 1.5rem;
    color: var(--text-secondary);
    border-right: 2px solid var(--neon-blue);
    padding-right: 5px;
    animation: blink 1s step-end infinite;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 4s steps(30, end) forwards, blink 1s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--neon-blue); }
}

/* 动态数据看板 */
.hero-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 行动按钮 */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cyber-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 2px solid;
    cursor: pointer;
}

.cyber-btn.primary {
    background: linear-gradient(45deg, var(--neon-red), rgba(255, 0, 60, 0.3));
    border-color: var(--neon-red);
    color: var(--text-primary);
}

.cyber-btn.primary:hover {
    background: linear-gradient(45deg, rgba(255, 0, 60, 0.8), var(--neon-red));
    box-shadow: 0 0 20px var(--neon-red);
    transform: translateY(-2px);
}

.cyber-btn.secondary {
    background: transparent;
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

.cyber-btn.secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px var(--neon-blue);
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: glowMove 2s linear infinite;
}

@keyframes glowMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 游戏画面展示 */
.hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 16/9;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: var(--text-primary);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.game-card:hover .game-overlay {
    transform: translateY(0);
}

/* 滚动指示器 */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { top: 10px; opacity: 1; }
    50% { top: 30px; opacity: 0; }
}

/* 服务亮点 */
.cyber-services {
    padding: 100px 0;
    background: var(--cyber-dark);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title span {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-glow), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--neon-blue);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-blue);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.service-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-red);
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: var(--text-primary);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    width: 100%;
    text-align: center;
}

.service-btn:hover {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

/* 认证标识 */
.certification {
    padding: 60px 0;
    background: var(--cyber-gray);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.cert-item {
    padding: 30px 20px;
    position: relative;
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
    display: block;
}

.cert-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.cert-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 数据可视化 */
.data-visualization {
    padding: 100px 0;
    background: var(--cyber-black);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.data-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-color);
    padding: 20px;
    text-align: center;
}

.data-card h4 {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* 页脚 */
.cyber-footer {
    background: var(--cyber-dark);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    position: relative;
}

.cyber-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--neon-red);
    margin: 10px 0 5px;
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 枫叶样式 */
.maple-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 5px;
}

.maple-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.leaf-shape {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 80% 60%, 50% 100%, 20% 60%, 0% 35%, 20% 10%);
    animation: leafFloat 3s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.leaf-text {
    color: #ff4500;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 5px;
}

.maple-info {
    flex: 1;
}

.avatar {
    display: inline-block;
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.invite-text {
    color: #ff8c00;
    font-style: italic;
    margin-bottom: 15px;
}

.qr-placeholder {
    text-align: center;
}

.qr-code {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.qr-grid {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(transparent 49%, black 49%, black 51%, transparent 51%) 0 0 / 10% 10% repeat,
        linear-gradient(90deg, transparent 49%, black 49%, black 51%, transparent 51%) 0 0 / 10% 10% repeat;
}

.qr-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: black;
    border-radius: 3px;
}

.mini-leaf {
    width: 10px;
    height: 10px;
    background: #ff4500;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 80% 60%, 50% 100%, 20% 60%, 0% 35%, 20% 10%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 页脚链接 */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--neon-blue);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--neon-blue);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--neon-blue);
    color: var(--cyber-black);
    box-shadow: 0 0 15px var(--neon-blue);
    transform: translateY(-3px);
}

.customer-service {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.service-hours {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-search {
    margin-top: 20px;
    display: flex;
}

.footer-search input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 15px;
    border-right: none;
}

.footer-search .search-btn {
    border-left: none;
    background: rgba(0, 240, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-normal);
}

.legal-links a:hover {
    color: var(--neon-blue);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: cener;
    }
    
    .hero-gallery {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-card {
        min-width: 100px;
    }
    
    .cyber-nav ul {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .cyber-search input:focus {
        width: 200px;
    }
    
    .cyber-title {
        font-size: 2.5rem;
    }
    
    .typing-text {
        font-size: 1.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .cyber-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .service-card {
        padding: 20px;
    }
}