.p-not-found {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0;
    background-color: var(--white);
    text-align: center;
}

.p-not-found .not-found-content {
    max-width: 600px;
    margin: 0 auto;
}

.p-not-found .error-code {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary-color);
    opacity: 0.15;
    display: block;
    margin-bottom: -2rem;
}

.p-not-found .not-found-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 2rem;
}

.p-not-found .not-found-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.p-not-found .not-found-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.p-not-found .not-found-footer {
    display: flex;
    justify-content: center;
    opacity: 0.5;
}

.p-not-found .footer-logo {
    max-width: 120px;
    height: auto;
}

@media (max-width: 768px) {
    .p-not-found {
        padding: 6rem 0;
    }

    .p-not-found .error-code {
        font-size: 5rem;
        margin-bottom: -1rem;
    }

    .p-not-found .not-found-title {
        font-size: 1.8rem;
    }

    .p-not-found .not-found-description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .p-not-found .not-found-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
    }

    .p-not-found .c-base-button {
        width: 100%;
    }
}
