/* styles/who-we-are.css */
.who-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(139, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.who-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.who-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 2rem;
    background: white;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.content-text h2,
.content-text h3 {
    color: #8B0000;
    margin: 1.5rem 0 1rem;
}
.content-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.content-text ul {
    list-style: none;
    padding-left: 0;
}
.content-text ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #555;
}
.content-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    background: #8B0000;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}
.content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .who-hero .hero-content h1 { font-size: 2.2rem; }
    .who-hero .hero-content p { font-size: 1.1rem; }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .content-image img {
        max-width: 500px;
        margin: 0 auto;
    }
}