.fhl-about-wrapper {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    color: #111;
}

.fhl-about-header {
    text-align: center;
    margin-bottom: 60px;
}

.fhl-about-header .subtitle {
    color: #c5a46d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
}

.fhl-about-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-top: 15px;
    line-height: 1.1;
}

.fhl-about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text-main .lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-weight: 300;
}

.about-text-main p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Stats Styling */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    background: #fafafa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #c5a46d;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #111;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #888;
    font-weight: 600;
}

/* Value Cards */
.fhl-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #777;
}

/* Responsive */
@media (max-width: 900px) {
    .fhl-about-content, .fhl-values {
        grid-template-columns: 1fr;
    }
    .fhl-about-header h1 { font-size: 2.5rem; }
    .fhl-about-content { gap: 40px; }
}