﻿#about-page {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.about-header {
    background: linear-gradient(160deg, #0f5132, #1a7945);
    color: white;
    text-align: left;
    padding: 60px 20px;
   
}

    .about-header h1 {
        font-size: 36px;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .about-header p {
        max-width: 700px;
        font-size: 16px;
    }

.about-mission-story {
    background: #f9fafb;
    padding: 60px 20px;
}

.mission-story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;

}

.mission {
    flex: 1;
    min-width: 280px;
}
    .mission h3 {
        font-weight: 700;
    }
.stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.stat-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    text-align: center;
    padding: 15px;
}

    .stat-card h2 {
        color: #e67e22;
        margin-bottom: 5px;
        font-weight: 700;
    }

.our-story {
    margin-top: 40px;
}

blockquote {
    margin-top: 15px;
    font-style: italic;
    color: #1a7945;
    border-left: 4px solid #1a7945;
    padding-left: 10px;
}

.about-core-values {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

    .about-core-values h2 {
        margin-bottom: 30px;
        font-size: 28px;
        color: black;
        font-weight: 800;
    }

.value-card {
    background: #f3f7f5;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 10px auto;
    display: flex;
    text-align: start;
    gap: 15px;
    max-width: 700px;
}
    .value-card h3 {
         font-size:20px;
        font-weight: 700;
    }

    .value-card .icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
     
    }

    /* Safety - shield (pink) */
    .value-card.safety .icon {
        background-color: #ffe9e9; /* hồng nhạt */
        color: #1a75cf; /* xanh dương icon */
    }

    /* Local & Sustainable - leaf (green) */
    .value-card.local .icon {
        background-color: #eaffef; /* xanh lá nhạt */
        color: #33a35c; /* xanh lá cây */
    }

    /* Authentic - sparkle (blue/purple) */
    .value-card.authentic .icon {
        background-color: #e9f3ff; /* xanh lam nhạt */
        color: #5a63ff; /* tím xanh */
    }

    /* Transparency - magnifying glass (yellow) */
    .value-card.transparency .icon {
        background-color: #fff6e0; /* vàng nhạt */
        color: #f5a623; /* vàng cam */
    }


.about-reviews {
    background: #f9fafb;
    padding: 60px 20px;
    text-align: center;
}
    .about-reviews h2 {
        font-weight: 700
    }
.review-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 30px;
}

.review-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    border-left-color: transparent;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 5px 10px;
    max-width: 300px;
    text-align: center;
    border-left: 5px solid  #4b99ff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    }

.review-text {
    font-style: italic;
    color: #333;

    line-height: 1.5;
    flex-grow: 1;
}

.review-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-info strong {
    display: block;
    color: #111;
    font-weight: 600;
    margin-bottom: 2px;
}

.review-info span {
    color: #777;
    font-size: 14px;
}


.about-partner {
    padding: 60px 20px;
    background: #fff;
}

.partner-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-box, .guide-box {
    flex: 1;
    min-width: 300px;
    background: #f3f7f5;
    border-radius: 8px;
    padding: 20px;
}

.btn-zalo, .btn-apply {
    display: inline-block;
    margin-top: 10px;
    background: #1a7945;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.2s;
}

    .btn-zalo:hover, .btn-apply:hover {
        background: #155b34;
    }
