.about-header {
    text-align: center;
    padding: 6rem 0 4rem;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.about-header h1 span {
    color: #00cfff;
}

.about-header p {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-story-section {
    padding: 5rem 0;
}

.story-contents-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 00;
    color: #333;
}

.about-story {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-story-image {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #333;
    font-weight: 700;
    letter-spacing: 0.1px;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 14px;
}

.mission-vision {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    margin-bottom: 100px;
}

.mission-vision-card {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 0.75rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    transition: transform 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
}

.mission-vision-card-icon {
    margin-bottom: 1.5rem;
    color: #333;
}

.mission-vision-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.mission-vision-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 1rem;
}

.about-divider {
    height: 1px;
    background-color: var(--border);
    margin: 2rem 0;
}

@media (max-width: 992px) {
    .about-story {
        flex-direction: column;
        gap: 2rem;
    }

    .story-content {
        text-align: center;
    }
    
    .mission-vision {
        flex-direction: column;
    }

    .mission-vision-card {
        text-align: center;
    }
    
    .about-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-story-section {
        padding: 3rem 0;
    }
    
    .about-header {
        padding: 4rem 0 2rem;
    }
    
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 350px) {
    .story-content h3 {
        font-size: 16px;
    }

    .story-content p {
        font-size: 12px;
    }

    .mission-vision-card h3 {
        font-size: 16px;
    }

    .mission-vision-card p {
        font-size: 12px;
    }
}