.about-section {
    min-height: 100vh;
    padding: 100px 5%;
    position: relative;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 1s forwards;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    transform: translateX(50px);
    opacity: 0;
    animation: slideIn 1s 0.5s forwards;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #8b5cf6;
    transition: width 0.2s;
    /* Reduced from 0.3s */
}

.section-title:hover::after {
    width: 100%;
}

.about-text {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(139, 92, 246, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.2s, background 0.2s;
    /* Reduced from 0.3s */
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.2);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }
}