.not-found-section {
    width: 100%;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: var(--header-height);
}

.not-found-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.not-found-content {
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.not-found-content h1 {
    font-size: 6rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.not-found-message {
    font-size: var(--font-2xl);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.not-found-actions {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
}

.not-found-animation {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: -50px;
    margin-bottom: -50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .not-found-content h1 {
        font-size: 4rem;
    }

    .not-found-message {
        font-size: var(--font-xl);
    }
}

@media (max-width: 480px) {
    .not-found-content h1 {
        font-size: 3rem;
    }
}