body {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not-found-container {
    max-width: 600px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.logo {
    margin-bottom: 64px;
    display: flex;
    justify-content: center;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.not-found-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.not-found-title {
    font: var(--font-36-display-semibold-100);
    font-size: 120px;
    color: var(--accent-color);
    line-height: 1;
    margin: 0;
}

.not-found-subtitle {
    font: var(--font-36-display-semibold-100);
    color: var(--text-color);
    margin: 0;
}

.not-found-description {
    font: var(--font-20-text-regular-100);
    color: var(--secondary-color);
    max-width: 400px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .logo {
        margin-bottom: 48px;
    }

    .logo img {
        max-width: 150px;
    }

    .not-found-title {
        font-size: 80px;
    }

    .not-found-subtitle {
        font-size: 28px;
    }

    .not-found-description {
        font-size: 18px;
    }
}
