/* About Page Styles */
.about-page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom right, rgba(13, 11, 157, 0.05), rgba(67, 97, 238, 0.05));
    position: relative;
    overflow: hidden;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 191, 248, 0.1));
    filter: blur(60px);
    z-index: 0;
}

.about-page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.about-page-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

/* About section */
.about-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Mission section */
.mission-section {
    padding: 100px 0;
    background-color: #f8f9fe;
    position: relative;
}

.mission-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 11, 157, 0.08), rgba(58, 191, 248, 0.08));
    filter: blur(60px);
    z-index: 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.mission-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.mission-image {
    position: relative;
}

.mission-img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Animation for scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 991px) {
    .about-content, .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-content {
        flex-direction: column-reverse;
    }
    
    .about-section, .mission-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .about-page-hero {
        padding: 100px 0 50px;
    }
    
    .about-page-hero h1 {
        font-size: 36px;
    }
    
    .about-page-hero p {
        font-size: 18px;
    }
    
    .about-text h2, .mission-text h2 {
        font-size: 28px;
    }
    
    .about-text p, .mission-text p {
        font-size: 16px;
    }
    
    .about-section, .mission-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .about-page-hero h1 {
        font-size: 32px;
    }
    
    .about-text h2, .mission-text h2 {
        font-size: 24px;
    }
}