body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #111;
    color: #fff;
}

.about-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #222 0%, #111 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.8;
}

.about-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s, transform 0.8s;
    background: #181818;
    margin: 0;
    padding: 0;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    font-size: 1rem;
}
