/* Hero Section */
.hero-section {
    background-image: url('/assets/images/instalatii/hero-instalatii.png');
}

/* Services Info Section */
.services-info {
    background-color: #23221E;
    padding: 4rem 2rem;
}

.services-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.services-list-title {
    color: #F9C349;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-list-items {
    list-style: none;
    padding: 0;
}

.services-list-items li {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.services-list-items li::before {
    content: "•";
    color: #F9C349;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.bms-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #F9C349;
}

.bms-title {
    color: #F9C349;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bms-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
}

@media (max-width: 768px) {
    .services-lists {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Info Images Section */
.info-images {
    padding: 4rem 2rem;
}

.info-images-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.info-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .services-lists {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-images-container {
        flex-direction: column;
    }
    
    .info-image {
        max-width: 100%;
    }
}
