/* Services Page Container */
.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Specific Card Layout: Image Left, Text Right */
.svc-card {
    display: flex;
    background-color: var(--bg-card);
    border: 1px solid var(--grey-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.svc-card:hover {
    border-color: var(--blue-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.svc-image-box {
    flex: 0 0 350px;
    background: #000;
}

.svc-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-text-box {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-name {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.svc-pricing {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.svc-pricing span {
    color: var(--blue-primary);
    font-weight: bold;
}

.svc-discord {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.svc-details {
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 1px solid var(--grey-dark);
    padding-top: 1rem;
}

/* Responsive */
@media (max-width: 850px) {
    .svc-card { flex-direction: column; }
    .svc-image-box { flex: none; height: 250px; }
}
