/* About Us Custom Styles */
.about-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content-section {
    position: relative;
}

.about-content-section img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-content-section img:hover {
    transform: scale(1.02);
}

.about-mission-section {
    background: linear-gradient(135deg, #130170 0%, #1a0899 100%);
    position: relative;
    overflow: hidden;
}

.about-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.core-value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #130170;
}

.core-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.core-value-card h4 {
    color: #130170;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.core-value-card p {
    color: #434343;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-advantages-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.advantage-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.advantage-icon {
    width: 24px;
    height: 24px;
    background: #130170;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.advantage-icon::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.advantage-content h3 {
    color: #130170;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.advantage-content p {
    color: #434343;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .core-values-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
}

/* Accessibility improvements */
.about-content-section img {
    max-width: 100%;
    height: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}