.about-hero {
    --page-hero-image: url('/img/about/hero.webp');
    --hero-overlay: rgba(0, 0, 0, 0.6);
}

/* Main About */
.about-main {
    padding: 3rem 1rem;
    background-color: #fff;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.about-image {
    flex: 1 1 45%;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.about-text {
    flex: 1 1 50%;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Strengths */
.about-strengths {
    background-color: #f9f9f9;
    padding: 4rem 1rem;
    text-align: center;
    
}

.about-strengths h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #8b5cf6;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.strength-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 16px rgba(105, 0, 153, 0.3);
}

.strength-card:hover {
    transform: translateY(-6px);
}

.strength-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.strength-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #8b5cf6;
}

.strength-card p {
    font-size: 0.95rem;
    color: #555;
}

