.services-page {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 80px auto;
    padding: 0 20px;
}

.services-page .content {
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.services-page h1 {
    font-size: 2.5rem;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 10px;
}

.services-page h2 {
    font-size: 1.5rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

/* List styling if present */
.services-page ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin-bottom: 30px;
}

.services-page li {
    list-style: none;
    padding: 10px 20px;
    color: var(--text-color);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.services-page li:hover {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    background: rgba(88, 153, 255, 0.05);
    border-radius: 5px 5px 0 0;
}

@media (max-width: 768px) {
    .services-page {
        width: 95%;
        padding: 0;
    }

    .services-page .content {
        padding: 20px;
    }
}