.about-container {
    padding-top: 60px;
}

.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 0.8)),
                url('../assets/about-bg.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.about-section {
    padding: 6rem 2rem;
    background: rgba(26, 26, 46, 0.8);
}

.about-section:nth-child(odd) {
    background: rgba(10, 10, 26, 0.8);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.section-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.section-text ul {
    list-style: none;
    padding: 0;
}

.section-text ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.section-text ul li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.section-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
        gap: 2rem;
    }

    .section-content.reverse {
        flex-direction: column;
    }

    .about-hero {
        height: 40vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-text h2 {
        font-size: 1.5rem;
    }
} 