/* About Page Styles */
.about-sidebar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
}

.about-sidebar .list-group-item {
    border: none;
    padding: 15px 20px;
    font-weight: 500;
    color: #555;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.about-sidebar .list-group-item:hover {
    background-color: #f8f9fa;
    color: #009fe8;
}

.about-sidebar .list-group-item.active {
    background-color: #e6f6ff;
    color: #009fe8;
    border-left-color: #009fe8;
}

.about-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-height: 500px;
}

.about-content h2 {
    color: #009fe8;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.about-content p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.about-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

@media (max-width: 991px) {
    .about-sidebar {
        margin-bottom: 30px;
    }
}
