.services-section {
    padding: 12rem 0;
    padding-bottom: 17rem;
    background:#fbfbfb;
}

.services-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 4rem;
}

.service-row {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid #e5e5e5;
}

.service-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}


.service-row.reverse {
    grid-template-columns: 50% 1fr;
}

.service-content,
.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content {
    padding: 0rem;
        justify-content: flex-start;
}

.service-text {
    max-width: 600px;
}

.service-title {
    font-family: 'Lustria', 'Lustria Placeholder', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1rem);
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0 0 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #ffffff80;
    border: 1px solid rgba(204, 204, 204, 0.596);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 1.2rem;
    color: #666;
    min-width: 20px;
    text-align: center;
    opacity: 0.8;
}

.feature-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 400;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}


@media (max-width: 1200px) {
    .services-container {
        padding: 0 2rem;
    }
    
    .service-content {
        padding: 3rem;
    }
}

@media (max-width: 1024px) {
    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .services-container {
        padding: 0 1.5rem;
    }
    
    .service-row {
        margin-bottom: 4rem;
        padding-bottom: 4rem;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .service-image {
        min-height: 300px;
    }
    
    .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .service-row {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-text {
    animation: fadeInUp 0.6s ease-out;
}

.feature-item {
    animation: fadeInUp 0.6s ease-out;
}

.feature-item:nth-child(1) { animation-delay: 0.05s; }
.feature-item:nth-child(2) { animation-delay: 0.1s; }
.feature-item:nth-child(3) { animation-delay: 0.15s; }
.feature-item:nth-child(4) { animation-delay: 0.2s; }
.feature-item:nth-child(5) { animation-delay: 0.25s; }
.feature-item:nth-child(6) { animation-delay: 0.3s; }
.feature-item:nth-child(7) { animation-delay: 0.35s; }
.feature-item:nth-child(8) { animation-delay: 0.4s; }
.feature-item:nth-child(9) { animation-delay: 0.45s; }