#services-detail {
    padding: 120px 5% 5rem;
}

#services-detail h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.service-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
    padding-left: 1rem;
}

.service-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin-bottom: 1rem;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.2);
}

.service-card:active {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin: 1rem 0;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 77, 255, 0.1);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:active::after {
    opacity: 1;
} 