/* Custom About Page Styles */
.approach-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.approach-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.approach-item h5 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-us__subtitle {
    color: #28a745 !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
    position: relative !important;
}

.about-us__subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Enhanced responsive design for About page */
@media (max-width: 768px) {
    .approach-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .approach-item h5 {
        font-size: 1.1rem;
    }
    
    .approach-item:hover {
        transform: translateX(5px);
    }
}

/* Image hover effects */
.img-box__img img {
    transition: transform 0.3s ease;
}

.img-box:hover .img-box__img img {
    transform: scale(1.05);
}

/* Text aside styling */
.about-us__text-aside {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: rgba(40, 167, 69, 0.1) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    line-height: 1 !important;
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    position: relative !important;
}

@media (max-width: 992px) {
    .about-us__text-aside {
        writing-mode: horizontal-tb !important;
        text-orientation: initial !important;
        font-size: 2rem !important;
        text-align: center !important;
        margin-top: 2rem !important;
    }
}

