/* =========================
   Hero Section
========================= */
.about-page-hero {
    padding: 90px 20px 55px;
    background: linear-gradient(to bottom, #f8fbff 0%, #ffffff 100%);
}

.about-page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-page-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2a5d8f;
}

.about-page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    color: #B00F0F;
    line-height: 1.1;
}

.about-page-hero-text {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-page {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0;
    /* font-family: "Carlito", sans-serif; */
    font-family: "Carlito", sans-serif;
    color: #333;
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-logo {
    width: 150px;
    margin-bottom: 20px;
}

.about-header h1 {
    font-size: 3rem;
    color: #B00F0F;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styling */
.about-section {
    margin-bottom: 40px;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(42, 93, 143, 0.08);
}

.about-section h2 {
    font-size: 1.9rem;
    color: #2a5d8f;
    margin-bottom: 18px;
    position: relative;
}

.about-section h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #B00F0F;
    margin-top: 8px;
    border-radius: 2px;
}

.about-section p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Core Values */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

.values-list li {
    background: #f8fbff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #e3edf8;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.values-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.values-list li strong {
    display: block;
    color: #2a5d8f;
    margin-bottom: 6px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Brands List */
.brand-list {
    list-style-type: disc;
    padding-left: 20px;
}

.brand-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.about-page-cta {
    padding: 40px 20px 80px;
}

.about-page-cta-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: linear-gradient(135deg, #15314d, #2a5d8f);
    padding: 40px;
    border-radius: 20px;
    color: white;
}

.about-page-btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 22px;
    background: #B00F0F;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 650px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .about-header p {
        font-size: 1rem;
    }

    .about-section {
        padding: 20px 15px;
    }

    .mission-vision-grid,
    .team-grid,
    .values-list {
        grid-template-columns: 1fr;
    }
}
