/* Apartment Features Styles */

/* Container */
.apartment-features-container {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    color: #151515;
    margin-bottom: 40px;
}

/* Headline */
.apartment-features-headline {
    color: #5D3DB5;
    font-family: 'UNCAGE', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    margin-bottom: 30px;
}

/* Features List */
.apartment-features-list {
    display: flex;
    flex-direction: column;
}

/* Feature Item */
.apartment-feature-item {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.apartment-feature-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #B9B6BF;
}

.apartment-feature-item:last-child:after {
    display: none;
}

/* Feature Title */
.apartment-feature-title {
    color: #FF7E56;
    font-family: 'UNCAGE', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    margin-bottom: 15px;
}

/* Feature Content */
.apartment-feature-content {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #5D3DB5;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .apartment-features-headline {
        font-size: 16px;
        line-height: 18px;
    }
    
    .apartment-feature-title {
        font-size: 16px;
        line-height: 18px;
    }
    
    .apartment-feature-content {
        font-size: 18px;
        line-height: 24px;
    }
    
    .apartment-feature-item {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .apartment-feature-item:after {
        height: 1px;
        background-color: #D5D1D1;
    }
}