/* Services Section with 12-column grid */
.services-section {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 40px;
}

.services-header {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 60px;
}

.services-left {
    grid-column: 1 / 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.services-title .services-line {
    display: block;
}

.services-list {
    grid-column: 4 / -1;
    width: 100%;
    border-top: 1px solid #e5e5e5;
}

.service-item {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    color: var(--accent-orange);
    transform: translateX(10px);
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 48px;
    font-weight: 300;
    margin: 0;
    line-height: 1.2;
}