.services-hero {
    margin-top: 80px;
    padding: 80px 0;
    background: var(--color-gradient-2);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.services-hero-title {
    color: var(--color-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.services-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.services-list {
    padding: 100px 0;
    background-color: var(--color-white);
}

.service-item {
    margin-bottom: 24px;
    border: 1px solid var(--color-gray-border);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-white);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    cursor: pointer;
    transition: var(--transition);
}

.service-header:hover {
    background-color: var(--color-gray-light);
}

.service-info h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.service-info p {
    font-size: 16px;
    color: var(--color-gray-medium);
    margin: 0;
}

.service-toggle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 300;
    background: var(--color-gradient-2);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.service-item.active .service-toggle {
    transform: rotate(45deg);
}

.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-item.active .service-body {
    max-height: 2000px;
}

.service-details {
    padding: 0 32px 32px;
}

.service-details h3 {
    font-size: 20px;
    margin: 24px 0 16px;
}

.service-details p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-details ul {
    margin: 16px 0 24px 20px;
}

.service-details li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
    color: var(--color-gray-medium);
}

.service-details .btn {
    margin-top: 24px;
}

@media (max-width: 640px) {
    .services-hero {
        padding: 60px 0;
    }

    .services-list {
        padding: 60px 0;
    }

    .service-header {
        padding: 24px;
    }

    .service-info h2 {
        font-size: 20px;
    }

    .service-toggle {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .service-details {
        padding: 0 24px 24px;
    }
}
