/* ===== 404 ERROR PAGE STYLES ===== */

.error-section {
    padding: 100px 0;
    text-align: center;
    background: var(--content-bg);
}

.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    font-size: 80px;
    margin-bottom: 30px;
    opacity: 0.7;
}

.error-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--brand-black);
    margin-bottom: 20px;
}

.error-message {
    font-size: var(--text-lg);
    color: var(--content-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .error-section {
        padding: 60px 0;
    }
    
    .error-title {
        font-size: var(--text-4xl);
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .error-title {
        font-size: var(--text-3xl);
    }
    
    .error-icon {
        font-size: 60px;
    }
}