
.about-section {
    background-color: #ffffff;
    padding: 60px 0 40px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-title {
    color: #8B5CF6;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
}

.about-content {
    margin-bottom: 50px;
}

.about-text {
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.about-text:last-of-type {
    margin-bottom: 0;
}


.color-bar {
    display: flex;
    width: 100%;
    height: 6px;
    margin-top: 50px;
    border-radius: 3px;
    overflow: hidden;
}

.color-segment {
    height: 100%;
}

.color-segment.green {
    background-color: #4CAF50;
    flex: 0 0 18%;
}

.color-segment.purple {
    background-color: #8B5CF6;
    flex: 0 0 18%;
}

.color-segment.yellow {
    background-color: #FFD700;
    flex: 0 0 18%;
}

.color-segment.blue {
    background-color: #2196F3;
    flex: 0 0 18%;
}

.color-segment.purple-extended {
    background-color: #8B5CF6;
    flex: 0 0 28%;
}


@media (max-width: 768px) {
    .about-section {
        padding: 40px 0 30px;
    }
    
    .about-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .color-bar {
        margin-top: 40px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 22px;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

