* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a237e;
    --primary-dark: #0d1442;
    --accent: #c62828;
    --accent-dark: #a51f1f;
    --text: #2c2c2c;
    --text-light: #6b7280;
    --border: #e5e7eb;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f0f2f5;
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 50px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(198, 40, 40, 0.15) 0, transparent 45%);
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero .breadcrumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px;
}

.hero .breadcrumb a:hover {
    color: #fff;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.hero p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

section {
    padding: 50px 0;
}

.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 36px;
}

.section-head .eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-head h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.section-head p {
    color: var(--text-light);
    font-size: 0.92rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-text h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.story-text p {
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.story-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.15);
    height: 340px;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-bar {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -24px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.stat-item .lbl {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform .2s;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-photo {
    height: 200px;
    background: linear-gradient(135deg, #e8eaf6, #f0f2f5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo i {
    font-size: 3rem;
    color: #c5cae9;
}

.team-info {
    padding: 18px;
}

.team-info h4 {
    font-size: 0.98rem;
    margin-bottom: 3px;
}

.team-info .role {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f2f5;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all .2s;
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
}

@media(max-width:900px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-img {
        height: 260px;
        order: -1;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        padding-bottom: 16px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--border);
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 36px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-bar {
        padding: 22px 14px;
    }

    .stat-item .num {
        font-size: 1.4rem;
    }
}