.service-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 5px;
}

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

.service-title {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.service-title::after {
    content: '+';
    font-size: 1.2em;
}

.service-description {
    display: none;
    margin-top: 10px;
    padding-left: 20px;
}

.service-item.active .service-title::after {
    content: '-';
}

.service-item.active .service-description {
    display: block;
}

#additionalServices {
    display: none;
    margin-top: 20px;
}

#showMoreBtn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #e6b980;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#showMoreBtn:hover {
    background-color: #d4a76a;
}

.service-item {
    margin-bottom: 40px;
}


.major-service-item {
    margin-bottom: 40px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 20px;
}

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

.content-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.text-content {
    flex: 1;
    max-width: 60%;
}

.text-content h4 {
    margin-top: 0;
    margin-bottom: 0px;
}

.text-content ul {
    padding-left: 20px;
}

.image-container {
    max-width: 350px;
}

.rounded-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.image-container:hover .rounded-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
    }

    .image-container {
        max-width: 100%;
    }

    .image-container {
        max-width: 350px;
        margin-top: 0px;
    }

    .text-content {
        max-width: 390px;
        text-align: start;
    }
}

@media (max-width: 480px) {
    .image-container {
        max-width: 350px;
    }
}