/********** About Section CSS **********/
.about-section {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.about-content-column {
    position: relative;
    background-color: #fff;
}

.about-content-wrapper {
    max-width: 600px;
    margin-left: auto;
    position: relative;
}

.section-title h6 {
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title h6::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 10px;
    height: 2px;
    background-color: var(--primary);
}

.about-text {
    position: relative;
}

.about-feature {
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.about-feature-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.about-feature:hover .about-feature-icon i {
    transform: scale(1.2);
}

.about-right-column {
    background-color: var(--primary);
}

.about-bg {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-service-item {
    position: relative;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px 10px;
}

.about-service-item:last-child {
    margin-bottom: 0;
}

.about-service-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-header {
    position: relative;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-service-icon {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-service-item h3 {
    font-size: 24px;
    margin-bottom: 0;
}

.about-service-item p {
    margin-left: 85px;
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .about-content-wrapper {
        max-width: 100%;
    }
    
    .about-content-column {
        padding: 50px 40px !important;
    }
    
    .about-bg {
        padding: 40px !important;
    }
    
    .about-service-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .about-content-column {
        padding: 40px 20px !important;
    }
    
    .about-bg {
        padding: 30px !important;
    }
    
    .section-title h1 {
        font-size: 2rem;
    }
    
    .about-text h4 {
        font-size: 1.2rem;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .about-service-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-service-item p {
        margin-left: 75px;
    }
}

@media (max-width: 575.98px) {
    .about-content-column {
        padding: 30px 15px !important;
    }
    
    .about-feature {
        padding: 8px 10px;
    }
    
    .about-service-item {
        padding: 10px 5px;
    }
    
    .about-service-item h3 {
        font-size: 20px;
    }
    
    .about-service-item p {
        font-size: 14px;
        margin-left: 70px;
    }
}