.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px 60px;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.2;
}

.about-header .subtitle {
    font-size: 1.5rem;
    color: #a0a0a0;
    font-weight: 300;
    margin-bottom: 32px;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
    padding-bottom: 16px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #5b4cff;
}

.about-section p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.about-section strong {
    color: #ffffff;
    font-weight: 600;
}

.highlight-box {
    background: #1a1a1a;
    border-left: 4px solid #5b4cff;
    padding: 32px;
    margin: 40px 0;
    border-radius: 8px;
}

.highlight-box p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    font-style: italic;
}

.about-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.feature-item {
    background: #1a1a1a;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #5b4cff;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0a0a0;
    margin: 0;
}

.about-page .cta-section {
    background: linear-gradient(135deg, #5b4cff 0%, #4a3de6 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 80px;
}

.about-page .cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-page .cta-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.about-page .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.fun-fact {
    background: #2a2210;
    border-left: 4px solid #ffc107;
    padding: 24px;
    margin: 40px 0;
    border-radius: 8px;
}

.fun-fact h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.fun-fact p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin: 0;
}

@media (max-width: 768px) {
    .about-page {
        padding: 80px 16px 40px;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .about-header .subtitle {
        font-size: 1.125rem;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    .about-page .cta-section {
        padding: 40px 24px;
    }

    .about-page .cta-section h2 {
        font-size: 1.5rem;
    }

    .about-page .features-grid {
        grid-template-columns: 1fr;
    }
}
