/* Color Palette System mapped from Image 2 */
:root {
    --brand-red: #A30000;       /* Primary Deep Red */
    --brand-dark: #1E252B;      /* Charcoal Dark Blue/Black */
    --brand-gold: #FFCC00;      /* Accent Gold/Yellow */
    --bg-light: #F8FAFC;        /* Clean light ash background */
    --white: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --transition: all 0.3s ease;
}

.about-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    padding-bottom: 80px;
}

/* Header Hero */
.about-header {
    background-color: var(--brand-dark);
    color: var(--white);
    text-align: center;
    padding: 70px 20px;
    border-bottom: 4px solid var(--brand-red);
    margin-top: 5%;
}

.about-header h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.about-header p {
    font-size: 1.1rem;
    color: var(--border-color);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Container */
.about-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Badges & Titles */
.sub-badge {
    color: var(--brand-red);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sub-badge.center {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

.section-title {
    text-align: center;
    color: var(--brand-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px;
}

/* Story Block */
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.story-content h2 {
    color: var(--brand-dark);
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Mission & Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 70px;
}

.mv-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(163, 0, 0, 0.06);
    border-color: rgba(163, 0, 0, 0.2);
}

.mv-icon {
    background-color: var(--brand-red);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: var(--brand-dark);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Core Values Section */
.values-section {
    padding: 40px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 25px 20px;
    text-align: left;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--brand-red);
}

.value-icon {
    color: var(--brand-red);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-card h4 {
    color: var(--brand-dark);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* Team Section */
.team-intro-section {
    padding: 70px 0 20px 0;
    text-align: center;
}

.team-intro-section .section-title {
    margin-bottom: 15px;
}

.team-subtitle {
    max-width: 750px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}



/* Responsive Breakpoints */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-header h1 {
        font-size: 2rem;
    }
}