body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #1c1c1c 0%, #2c2c2c 100%);
}

body > .navbar {
    border-bottom: none;
    box-shadow: none;
}

.services-page {
    min-height: calc(100vh - 70px);
    background: transparent;
    padding: 20px;
    margin-top: 70px;
    position: relative;
}

.services-container {
    max-width: 1600px;
    margin: 0 auto;
    background: white;
    padding: 3rem 4rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.services-container h1 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* 继承原有的shortcuts样式，添加一些特定调整 */
.services-page .shortcuts {
    padding: 0;
    background: none;
}

.services-page .shortcuts + .shortcuts {
    margin-top: 3rem;
}

.services-page .official-requests {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

/* 修改卡片布局为三列 */
.services-page .shortcuts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 响应式调整 */
@media screen and (max-width: 1400px) {
    .services-container {
        margin: 0 2rem;
    }
}

@media screen and (max-width: 1200px) {
    .services-page .shortcuts-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .services-page .shortcuts-container {
        grid-template-columns: 1fr;
    }
} 