/* styles/about.css */
.about-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-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.about-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.about-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-content {
    padding: 4rem 2rem;
    background: white;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.about-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.card-text {
    padding: 1.5rem 0;
}
.card-text h3 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}
.card-text p {
    color: #555;
    line-height: 1.7;
}

.values-section {
    text-align: center;
}
.values-section h2 {
    color: #8B0000;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.value-item i {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 1rem;
}
.value-item h4 {
    color: #333;
    margin-bottom: 0.75rem;
}
.value-item p {
    color: #666;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero .hero-content h1 { font-size: 2.2rem; }
    .about-hero .hero-content p { font-size: 1.1rem; }
    .values-grid { grid-template-columns: 1fr; }
}