/* 404 Error Section */
.error-404-section {
    min-height: calc(100vh - 97px);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.error-404-container {
    max-width: 900px;
    text-align: center;
}

.error-404-content {
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(29, 45, 94, 0.1);
}

.error-404-number h1 {
    font-family: var(--family-font);
    font-size: 120px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.error-404-text {
    margin: 40px 0 50px;
}

.error-404-text h2 {
    font-family: var(--family-font);
    font-size: 33px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 20px;
    text-transform: uppercase;
}

.error-404-text p {
    font-family: var(--family-font-secondary);
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 10px 0;
}

.error-404-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    padding: 10px 40px;
    border-radius: 10px;
    box-shadow: none;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--family-font-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 45, 94, 0.3);
}

@media (max-width: 992px) {
    .error-404-section {
        padding: 100px 0 60px;
    }
    
    .error-404-content {
        padding: 40px 20px;
    }
    
    .error-404-number h1 {
        font-size: 80px;
    }
    
    .error-404-text h2 {
        font-size: 26px;
    }
    
    .error-404-text p {
        font-size: 14px;
    }
    
    .error-404-actions {
        flex-direction: column;
    }
    
    .error-404-actions .primary-btn,
    .error-404-actions .secondary-btn {
        width: 100%;
    }
}