:root {
        --crs-primary: #3ec1d3;
        --crs-secondary: #fb2576;
        --crs-dark: #1a1a2e;
        --crs-gray: #666;
        --crs-gradient-1: linear-gradient(135deg, #3ec1d3 0%, #0a2463 100%);
        --crs-gradient-2: linear-gradient(135deg, #fb2576 0%, #0a2463 100%);
        --crs-gradient-3: linear-gradient(135deg, #3ec1d3 0%, #fb2576 100%);
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 20px;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: var(--crs-dark);
    }

    .mission-vision {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-bottom: 80px;
    }

    .card {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .card-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: var(--crs-gradient-3);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 2rem;
        color: white;
    }

    .card h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: var(--crs-dark);
    }

    .card p {
        color: var(--crs-gray);
        line-height: 1.8;
    }

    .values-section {
        background: #f8f9fa;
        padding: 60px 20px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .value-item {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .value-item:hover {
        background: var(--crs-gradient-1);
        color: white;
    }

    .value-item i {
        font-size: 3rem;
        margin-bottom: 20px;
        color: var(--crs-primary);
        transition: color 0.3s ease;
    }

    .value-item:hover i {
        color: white;
    }

    .value-item h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .team-section {
        padding: 60px 20px;
        background: white;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .team-member {
        text-align: center;
        padding: 30px;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .team-member:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .member-photo {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: var(--crs-gradient-2);
    }

    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .member-photo i {
        font-size: 4rem;
        color: white;
    }

    .member-name {
        font-size: 1.5rem;
        margin-bottom: 5px;
        color: var(--crs-dark);
    }

    .member-role {
        color: var(--crs-secondary);
        font-weight: 600;
        margin-bottom: 15px;
    }

    .member-bio {
        color: var(--crs-gray);
        font-size: 0.95rem;
    }

    .stats-section {
        background: white;
        padding: 60px 20px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .stat-item {
        text-align: center;
        padding: 30px;
        transition: transform 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-5px);
    }

    .stat-item i {
        font-size: 3.5rem;
        color: var(--crs-dark);
        margin-bottom: 15px;
    }

    .stat-item h3 {
        font-size: 3rem;
        color: var(--crs-dark);
        margin-bottom: 10px;
        font-weight: 700;
    }

    .stat-item p {
        color: var(--crs-gray);
        font-size: 1.1rem;
    }

    .story-section {
        background: #f8f9fa;
        padding: 60px 20px;
    }

    .story-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .story-card {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
        padding: 30px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }

    .story-card:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .story-icon {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--crs-gradient-3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
    }

    .story-text h4 {
        font-size: 1.5rem;
        color: var(--crs-dark);
        margin-bottom: 10px;
    }

    .story-text p {
        color: var(--crs-gray);
        line-height: 1.8;
    }

    .about-intro {
        padding: 60px 20px;
        background: white;
    }

    .intro-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .intro-text h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--crs-dark);
        font-weight: 800;
        line-height: 1.2;
    }

    .intro-text p {
        color: var(--crs-gray);
        line-height: 1.9;
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .intro-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .image-placeholder {
        width: 100%;
        height: 400px;
        background: var(--crs-gradient-1);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8rem;
        color: white;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .approach-section {
        background: #f8f9fa;
        padding: 60px 20px;
    }

    .approach-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .approach-card {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .approach-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .approach-number {
        font-size: 4rem;
        font-weight: 700;
        color: var(--crs-primary);
        opacity: 0.1;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    .approach-card h3 {
        font-size: 1.4rem;
        color: var(--crs-dark);
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    .approach-card p {
        color: var(--crs-gray);
        line-height: 1.7;
        position: relative;
        z-index: 1;
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }

        .story-card {
            flex-direction: column;
            text-align: center;
        }

        .story-icon {
            margin: 0 auto;
        }

        .intro-content {
            grid-template-columns: 1fr;
        }

        .image-placeholder {
            height: 300px;
            font-size: 5rem;
        }

        .intro-text h2 {
            font-size: 2rem;
        }
    }