.about-page {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.about-section:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--bg-darker);
}

.about-section:active {
    transform: translateY(0);
}

.about-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-section h3 {
    color: var(--text-primary);
    margin: 1.25rem 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-section p {
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-section ul,
.about-section ol {
    margin: 0.75rem 0 0 1.25rem;
    color: var(--text-secondary);
}

.about-section li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.about-section strong {
    color: var(--text-primary);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.highlight-section {
    animation: highlightPulse 0.5s ease;
}

@keyframes highlightPulse {

    0%,
    100% {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
    }
}