* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #87BCD4;
    --primary-dark: #6ba3c0;
    --white: #ffffff;
    --gray-200: #e9ecef;
    --gray-800: #343a40;
    --gray-900: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    line-height: 1.6;
}

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 150px 20px 100px;
    margin-top: 70px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-content-full {
    max-width: 900px;
    margin: 0 auto;
}

/* About Sections */
.about-story,
.about-mission,
.about-vision {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--gray-200);
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.about-story h2,
.about-mission h2,
.about-vision h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-story p,
.about-mission p,
.about-vision p {
    color: var(--gray-800);
    font-size: 1rem;
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-200);
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: var(--white);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--gray-800);
    font-size: 0.9rem;
}

/* About Highlights */
.highlight-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(135, 188, 212, 0.1) 0%, rgba(107, 163, 192, 0.1) 100%);
    border-radius: 10px;
}

.highlight-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.highlight-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.highlight-item {
    text-align: center;
}

.highlight-item .number {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.highlight-item .label {
    color: var(--gray-800);
    margin-top: 0.5rem;
}

/* Team Section */
.team-section {
    margin-top: 3rem;
}

.team-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--gray-200);
    border-radius: 10px;
    transition: all 0.3s;
}

.team-member:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-member-img {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.team-member h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: #ccc;
    padding: 3rem 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
}

.footer p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 20px 80px;
        margin-top: 70px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .container {
        padding: 2rem;
    }

    .about-story,
    .about-mission,
    .about-vision {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .values-grid,
    .highlight-items,
    .team-grid {
        grid-template-columns: 1fr;
    }
}