:root {
    --primary-color: #3b82f6; /* Blue-500 */
    --text-dark: #1f2937; /* Gray-800 */
    --text-light: #4b5563; /* Gray-600 */
    --bg-light: #f9fafb; /* Gray-50 */
    --border-color: #e5e7eb; /* Gray-200 */
    --white: #ffffff;
}
/* --- Hero Section --- */
.hero {
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
}

.hero .subtitle {
    max-width: 800px;
    margin: 10px auto 20px;
    color: var(--text-light);
    font-weight: 300;
}

.hero .description {
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero .cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
    transition: all 0.3s ease;
}

.hero .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.45);
    text-decoration: none;
}

/* --- Mission & Vision Section --- */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-vision .item {
    text-align: center;
    padding: 30px;
}

.mission-vision .item .icon {
    margin-bottom: 15px;
}

/* --- Core Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.value-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.value-card .icon {
    margin-bottom: 10px;
}

.value-card h4 {
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-light);
}

/* --- Team Section --- */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: var(--text-light);
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.founder-card img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.founder-card h3 { margin-bottom: 5px; }

.founder-card .title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.founder-card blockquote {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin: 0;
    font-style: italic;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h5 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
}

/* --- Call to Action Section --- */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.cta-card {
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.cta-card .icon {
    margin-bottom: 10px;
}

.cta-card h4 {
    margin-bottom: 10px;
}

.cta-card .link {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 15px;
}

.cta-card .link:hover {
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mission-vision .item {
        padding: 15px;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .founder-card blockquote {
        border-left: none;
        border-top: 3px solid var(--primary-color);
        padding-left: 0;
        padding-top: 15px;
    }
}